Project

General

Profile

Scripting Wildcards » History » Revision 3

Revision 2 (Per Amundsen, 05/24/2018 10:05 AM) → Revision 3/5 (Per Amundsen, 05/24/2018 10:05 AM)

h1. Wildcards 

 Wildcard characters are special characters that are interpreted when comparing text. 

 There are three meaningful wildcard characters: 

 <notextile>? - matches a single character</notextile> character 
 <notextile* * - matches everything (including nothing)</notextile> nothing) 
 <notextile& & - matches a whole word if used alone</notextile> 

 For example the expression "t*s a *?t" matches the string "this is a text" 

 If & is not used alone it matches the plain text '&' character 

 "test &" matches "test this" or "test that" 

 "test &his" matches only "test &his" 

 "test thi&" matches only "test thi&" 

 "test th&s" matches only "test th&s"