regex - Making Regular Expression SQL Anywhere -
i'm trying make regular expression match specific strings.
regular expression: (a[\s.avc]+)
for example:
i need words @ leading of string this:
"aa", "aavv", "a.", "avenida", "a.v", "aa vv"
but matches more words per line. idea i'm doing wrong?
you can use special character ^
@ start of regex, finds occurrences start of line.
Comments
Post a Comment