Tagged Questions

1
vote
1answer
182 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 < ...