I would like to use regex to replace every other comma in a text string with a Pipe to make it easier to parse.
This is how the string looks: 121234 SMITH, ALEX, 19512 JONES, ASHLEY, 400011 POPIO, CIRO, 162222 JANIS, LORI A, 12345 LEMON, KAREN, 66111 MORAN, LISA M, 111807 BRIGGS, CHERYL
This is how it should look after regex: 121234 SMITH, ALEX|19512 JONES, ASHLEY|400011 POPIO, CIRO|162222 JANIS, LORI A|12345 LEMON, KAREN|66111 MORAN, LISA M|111807 BRIGGS, CHERYL
I think I need to target the ", " that is in front of a number somehow.