1
vote
What’s the (JavaScript) Regular Expression I should use to ensure a string is a valid file name?
If you're taking a string path from the user (eg. by reading the .value of a file upload field), you can't actually be sure what the path separator character is. It might be a backslash (Windows), …
7
votes
Javascript - how to replace a sub-string?
String.replace() is entirely regexp-based: even if you pass in a string as the first argument, it will be compiled into a regexp, and in this case you don't get the chance to specify the ‘g’ regexp …
4
votes
Remove the Query String from a Url in HTML with a Regular Expression
You can't usefully parse HTML with a regexp. If you know the format of the page in advance — eg.
links are always in the form < a href="url with no unnecessary character escapes">, …
2
votes
MySQL strip non-numeric characters to compare
There's no regexp replace, only a plain string REPLACE().
MySQL has the REGEXP operator, but it's only a match tester not a replacer, so you would have to turn the logic inside-out:
…
0
votes
Javascript Hashmap key compiled into a regular expression
You don't need to use regular expressions for plain old string matching. You especially don't need to compile and throw away 12 regular expressions every time the function is called.
A sane …
4
votes
Regular expression for extracting tag attributes
Just to agree with everyone else: don't parse HTML using regexp.
It isn't possible to create an expression that will pick out attributes for even a correct piece of HTML, never mind all the …
0
votes
javascript equivalent of php’s preg_match_all
JS idiom for non-Regexp global replace:
input_content.split('<br>').join('\n')
…
3
votes
Regular expression: replace the suffix of a string ending in ‘.js’ but not ‘min.js’
For tasks this simple, there's no need for regexps. String methods can be more readable, eg.:
if filename.endswith('.js') and not filename.endswith('.min.js'):
filename= filenam …
3
votes
Regex for links in html text
Shoudln't a link be a well-defined regex?
No, [X]HTML is not in the general case parseable with regex. Consider examples like:
<link title='h …
1
vote
Regex for url validation with parts capturing
Can a single regex be used to valdate urls and match all the parts
No.
strager's regex is impressive, but at the end of the day it's less readable, main …
6
votes
How can I change extended latin characters to their unaccented ASCII equivalents?
Use Unicode::Normalize to get the NFD($str). In this form all the characters with diacritics will be turned into a base character followed by a combining diacritic character. Then simply remove all …
0
votes
Help With Regular Expression
I am trying to write a pattern for extracting the path for files found in img tags in HTML.
Can we have an autoresponder for "Don't use regex to parse [X]HTML"? …
7
votes
Regex in java question, multiple matches
I am trying to match multiple CSS style code blocks in a HTML document.
Standard Answer: don't use regex to parse HTML. regex cannot parse HTML reliably, no mat …
0
votes
Javascript String.replace(/\$/,str) works weirdly in jsp file
Peter's got it, and Simon's suggestion is also a good idea.
Additionally, you don't need to use regex to do a simple static-string replace. The JS idiom would be:
alert('a$b …
0
votes
How do you pass a variable to a Regular Expression JavaScript?
"ABABAB".replace(/B/g, "A");
As always: don't use regex unless you have to. For a simple string replace, the idiom is:
'ABABAB'.split('B').join( …
