4
votes
Using regex to replace all spaces NOT in quotes in Ruby
This seems to work:
result = string.gsub(/( |(".*?"))/, "\\2")
…
6
votes
Javascript Regexp - Match string pattern except if string is inside specified tag
It's not really clear what kind of "HTML" you are working on. If it is HTML code, something from an Ajax request maybe, then you can use a regular expression; matching both a link or …
1
vote
Optimal Regular Expression: match sets of lines starting with …
What you already have is already simple and understandable. Keep in mind that more "clever" RegExps may very well be slower and undoubtedly less readable.
Assuming lines are terminated by a …
2
votes
Why can’t javascript find and replace strings containing spaces in the url?
Add a regular expression escape function:
RegExp.escape = function ( s ) {
return s.replace(/([.*+?^${}()|[\]\/\\])/g, '\\$1');
};
When building regular expressi …
1
vote
use preg_replace to replace character unless an escape character precedes
For completeness:
There another way to do this if your regexp engine is primitive and doesn't know how to do …
