For context, please check this SO post.
full script:
(get-content file.txt -ReadCount 0) -replace '([^,]")"','$1' |
set-content newfile.txt
I am specifically looking for a translation of the logic in this portion of the script:
'([^,]")"','$1' |
Can someone please either explain the logic/syntax, or point me in the right direction?
^symbol.