Matching and exactly matching: Difference between revisions

From IFWiki

(Created page with "Ex: if (text) matches the text (text) <code> if "[score]" matches the text "3", ... if the printed name of the location matches the text "the", ... if the printed name of...")
 
No edit summary
 
Line 9: Line 9:


if the printed name of the location matches the text "the", case insensitively: ...
if the printed name of the location matches the text "the", case insensitively: ...
if the printed name of the noun matches the text "foo": ...
</code>
</code>



Latest revision as of 00:21, 5 December 2016

Ex:

if (text) matches the text (text)

if "[score]" matches the text "3", ...

if the printed name of the location matches the text "the", ...

if the printed name of the location matches the text "the", case insensitively: ...

if the printed name of the noun matches the text "foo": ...


See Also