user1446525
user1446525

Reputation: 3

Notepad++ Regular expression, select a range of characters except a string sequence

I want to select a range of characters except this sequence ", (the double quotes and the comma) How could i group them as single char after ^ when using this [^",] it select all the characters except " and , not the sequence ",

Thanks

Upvotes: 0

Views: 889

Answers (1)

user557597
user557597

Reputation:

Maybe something like this

(?:[^"]+("[^,])?)*

Upvotes: 3

Related Questions