I have this string:
1001,"Fitzsimmons, Des Marteau, Beale and Nunn",109,"George","COD","Standard",,109,8/14/1998 8:50:02
What regular expression would I use to replace the commas in the
"Fitzsimmons, Des Marteau, Beale and Nunn"
with a pipe |
so it is:
"Fitzsimmons| Des Marteau| Beale and Nunn"
Should have clarified, I am doing a split on this string using the commas, so I want "Fitzsimmons, Des Marteau, Beale and Nunn"
to be a string. I plan to replace the |
with a comma after I have split it.