I\'m checking line by line in C#
Example data:
bob jones,123,55.6,,,\"Hello , World\",,0
jim neighbor,432,66.5,,,Andy \"Blank,,1
john smith,555,77.4,
Here is the regex you seek:
(?!\B"[^"]*),(?![^"]*"\B)
Here is a demonstration:
regex101 demo
" you inserted does not have a closing quotation mark.,r"a string",10 because the letter on the edge of the " will create a word boundary, rather than a non-word boundary.(".*?,.*?"|.*?(?:,|$))
This will match the content and the commas and is compatible with values that are full of punctuation marks
regex101 demo