What can be the RegEx for matching all spaces in quotes but not quotes..
Example: "This is testing text"
My RegEx: (?<=\")\s+(?=\")
The above RegExp is not matching all spaces..
Example: "This is testing text"
My RegEx: (?<=\")\s+(?=\")
The above RegExp is not matching all spaces..