...
D s product | ||
---|---|---|
|
Slashes
The forward slash character is used to denote the boundaries of the regular expression:
Code Block |
---|
/this_is_my_regular_expression/ |
- The backslash character (
\
) is the escaping character. It can be used to denote an escaped character, a string, literal, or one of the set of supported special characters.
- Use a double backslash (
\\
) to denote an escaped string literal. For more information, see Escaping Strings in Transforms.
...