midx ( haystack_string_expression , regular_expression )
midx ( haystack_string_expression , regular_expression , start_expression )
returns string_expression
Returns the first substring that was matched by the regular expression. If the expression does not match anything the empty string “” will be returned. You may also specify an optional starting location for the search to begin start_expression.
String indices begin at 1.
print midx("HeLLo", "[Ll]o") print midx("Hello, Kitti","[Ii]",10)
will display
Lo i
By default the nature of regular expressions is “greedy”. This behaviour can be changed using the RegexMinimal statement.
1.1.2.7 | New To Version |
1.99.99.53 | Added start position < 0 |