Tagged Questions

13
votes
6answers
23k views

How to “inverse match” with regex?

I'm using RegexBuddy but I'm in trouble anyway with this thing :\ I'm processing line by line a file. I built a "line model" to match what I want. Now i'd like to do an inverse match... i.e. I want ...
1
vote
1answer
178 views

How do I restrict a string to a specific set of characters in JavaScript?

To put this in context, consider these 2 functions: ml_RestrictToChars = function(input,regex) { var result = '';var c = ''; var rx = new RegExp(regex); for (var i = 0; i < ...