mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
10 lines
570 B
Plaintext
10 lines
570 B
Plaintext
{
|
|
"name": "regexp_match",
|
|
"type": "function",
|
|
"description": "Return the first matching position matching a regular expression within a string, or 0 if the substring is not found.",
|
|
"arguments": [ {"arg":"input_string","description":"the string to test against the regular expression"},
|
|
{"arg":"regex","description":"The regular expression to test against. Backslash characters must be double escaped (e.g., \"\\\\\\\\s\" to match a white space character)."}
|
|
],
|
|
"examples": [ { "expression":"regexp_match('QGIS ROCKS','\\\\\\\\sROCKS')", "returns":"4"}]
|
|
}
|