G
GS
I tried this regex expression but no luck
(?<AcctName>\w*(\s\w*)*((\'s\w\w*){0,1}))\s\[(?<AcctNbr>\d*)\]
with regexoption of mulit-line, explicit capture, ignorecase, dotall and
ignore pattern white space
on data like
PRESIDENT'S CHOICE [0991234]
I got "S CHOICE" for AcctName instead of "PRESIDENT'S CHOICE"
what did I make the mistake?
(?<AcctName>\w*(\s\w*)*((\'s\w\w*){0,1}))\s\[(?<AcctNbr>\d*)\]
with regexoption of mulit-line, explicit capture, ignorecase, dotall and
ignore pattern white space
on data like
PRESIDENT'S CHOICE [0991234]
I got "S CHOICE" for AcctName instead of "PRESIDENT'S CHOICE"
what did I make the mistake?