On this page |
String patterns ¶
You can use string patterns anywhere an expression function needs a name (such as a parameter or node name) to match multiple things at once.
|
Matches any string. |
|
Matches any single character. |
|
Matches any of the characters between the square brackets. This does not support character ranges using a hyphen (you cannot do |
|
Removes strings matching ‹pattern› from the previous match. |
|
Matches attribute, object group, channel group, and/or bundle (depending on context). |
Examples:
|
Matches everything beginning with “geo”. |
|
Matches everything beginning with “geo” or “Geo”. |
|
Matches everything that has any character followed by “eo” and then any number of characters. |
|
Matches everything except the string “geo1”. |
Numeric patterns in the Group node ¶
See Group syntax.
Notes ¶
-
Separate multiple patterns with spaces. Commas are not allowed as separator characters.