In Excel VBA regular expresson, how can match a double quote but need to ignore pair of double qoute? Thanks all.
Tried lookahead, lookbehind that might not meet the target.
Such as ^(?!.*"".*).*".*$
This will ignore 2 or more double quote even 3 or 5. Which is not expected because it is not a pair.
Match
123"456
123"456"789
123"""456"""789
Don't match
123""456
123""456""789
123456789