Topic complex |
Selecting |
Function |
WIE |
Short |
String comparison with wild cards (out of date) |
Syntax |
Exp WIE Pattern |
Parameter |
Exp : String
Pattern : String with "?" and "*" as Jokers |
Return |
TRUE, if Exp matches with the search pattern
FALSE, otherwise |
See also: |
|
Description |
In the search pattern "?" means exactly one any desired char, "*" means any number of any desired chars (also 0).
"Müller" wie "*er" -> TRUE
"Müller" wie "M?ll*" -> TRUE
"Müller" wie "M?ller?" -> FALSE
|