RegEx for quoted string with missing open parenthesis -


what regex find quoted string having close parenthesis @ end, :

"people)" 

but not

"(people)" 

something so: "[^(]+?\)" should fit bill. might need escape quotation marks , backslash well, depending on regex engine using.

some details on how regex work available here.


Comments

Popular posts from this blog

c++ - How to add Crypto++ library to Qt project -

c++ - Serialize a class with a Qlist of custom classes as member (using QDataStream) -

Read video using VideoReader function in Matlab? -