I want to replace 3 spaces with
?
Somehow, I thought it is good to use \s, but
couldn't match three spaces in quotes??
Why is this?
could match 1+ space, but this is not the required behaviour 
Code:
null
Somehow, I thought it is good to use \s, but
Code:
$code =~ s/'\s\s\s'/null/;
Why is this?
Code:
$code =~ s/'\s+'/null/;