Hi
I am trying to use a regular expression to delete the characters between to two items in a collection variable. In this case - and ;.
For example,
Smith, John - OrgName-SubOrg, St. Louis, MO; Cook, David - OrgName-SubOrg, Washington, DC; to be
Smith, John; Cook, David
I used (?<=-).+(?= ; )
got this:
Smith, John - ;
Any help would be appreciated.
