Ask Reuben
Back Quote
Why does my regular expression not work?
How do I stop \ having special meaning in my text literal?
Regular expressions were added in Genero Enterprise 4.00. No longer do you need to use IMPORT JAVA in order to code regular expressions. You can use the new methods introduced in 4.00 as part of the util.Regexp class as well as the additional methods added to the STRING data-type.
During the Early Access Program, something became very apparent. If you copied a regular expression directly from a website such as Stack Overflow or the many sites dedicated to regular expressions such as https://regexr.com/ , you would not get the expected matches. This was because of two contrasting properties…
The back slash \
character is used in the syntax for pattern matching in regular expressions. For example \d
would match any digit,\b
would match any whitespace. A full list is given hereThe back slash character has special meaning in text literals (Note: link to 3.20 documentation). For example \n
was new line,\"
and \'
allowed you to use "
and '
inside text literals e.g. 'O\'Sullivan'
,"WHERE col=\"A\""
. To have a genuine\
character in a quote you needed to express it as \\
. DISPLAY "foo\\bar"
would appear asfoo\bar
"^\d\d$"
but the Genero text literal rules would see that passed as "^dd$"
to the regular expression method, and you would not get the result intended. Strictly speaking what you needed to do was prefix any back slash \
"^\d\d$"
needed to become "^\\d\\d$"
`
\
DISPLAY `Line One\nLine Two`
will display as …
Line One\nLine Two
not as
Line One
Line Two
`
'
"
`
[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?
and change all \
\\
!!!