REMatchNoCase()
Uses a regular expression (RE) to search a string for a pattern, starting from a specified position.
REMatchNoCase( reg_expression=string, string=string, multiline=boolean );
Returns: Array
| Argument | Description | Default |
|---|---|---|
|
reg_expression
string,
required
|
edit
Regular expression for which to search. Case-insensitive. Alias: regex |
|
|
string
string,
required
|
edit
String in which to search. |
|
|
multiline
boolean,
optional
|
edit
If true indicate the regular expression should treat input as having multiple lines. This option affects the interpretation of the ^ and $ metacharacters. When true the ^ metacharacter matches at the beginning of every line, and the $ metacharacter matches at the end of every line. Additionally the . metacharacter will not match newlines when true. Introduced: 5.3.8.23 |
false |
Examples
editwriteDump(REMatchNoCase('[A-Z]+','12AbcacAcdd'));
See also
- Strings
- Regex
- string.REMatchNoCase()
- Search Issue Tracker open_in_new
- Search Lucee Test Cases open_in_new (good for further, detailed examples)