In the end, I will want to replace all the
that are enclosed within "
I'm currently on Regex101 trying various iterations of my regex... This is the the closest I have so far...
originString = blah"blahblah""blah"blahblah"blahblahblah""bleh"
regex = ?+"{1}[^"]?+([])?+[^"]?+"
?+ maybe one or more tab
"{1} a double quote
[^"]?+ anything but a double quote
([])?+ capture all the tabs
[^"]?+ anything but a double quote
"{1} a double quote
My logic is flawed!
I need your help in grouping the tab characters.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…