You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just change your pattern to /.*TFR-TO 123456/ and it will work. You have to match from the beginning of the string onward, so the modified regex just consumes any number of leading characters and will perform the same as search().
If the pattern you are try to match is at the start of the string then it will match otherwise it will not find an match
Patten: /TFR-TO 1234456/
Desciption to check for match: "WU-005 TFR-TO 123456"
will not work unless I change the match code to search as follows:
thanks
Brian
The text was updated successfully, but these errors were encountered: