[Overview][Resource strings][Constants][Types][Procedures and functions][Index] |
Check whether a string matches a wildcard search expression.
Source position: strutils.pp line 186
function IsWild( |
InputStr: string; |
Wilds: string; |
IgnoreCase: Boolean |
):Boolean; |
InputStr |
|
String to search |
Wilds |
|
Wildcard specification |
IgnoreCase |
|
Search case insensitive or not. |
True if the string matches the wildcard specification, False otherwise.
IsWild checks InputStr for the presence of the Wilds string. Wilds may contain "?" and "*" wildcard characters, which have their usual meaning: "*" matches any series of characters, possibly empty. "?" matches any single character. The function returns True if a string is found that matches Wilds, False otherwise.
If IgnoreCase is True, the non-wildcard characters are matched case insensitively. If it is False, case is observed when searching.
None.
|
Search a buffer for a certain string. |
|
|
Search for a substring in a string, using wildcards. |