I need to select all the whitespaces except those ones inside double quotes " "
So for the input below, I need to select all the whitespaces except those ones inside "constant one two"
- consider that this code sample is my whole input string:
function void test ( ) {
if ( false ) {
let s = "constant one two" ;
let s = null ;
let a [ 1 ] = a [ 2 ] ;
}
}
I tried a lot of options with positive and negative lookahead but with no luck yet.