Search Results

0
votes

What did I do wrong here? [Javascript Regex]

A simpler way to write it still would be var name_regex = /^([a-z0-9_])+$/i; …
-1
votes

Javascript Regex: How to bold specific words with regex?

var needle = 'cows'; var regexp = new RegExp('(^|\s)('+needle+')(\s|$)', 'ig'); var old_string = 'cows at www.cows.com, milk some COWs'; var new_string = old_string.replace(regexp, '< …
0
votes

Extract parameter value from url using regular expressions

Not tested but this should work: /\?v=([a-z0-9\-]+)\&?/i …
-1
votes

Regex to find string inside string inside string

If you only want to capture the ultimately nested text you could just drop all tags inside the header tag with: /<([hH][1-3]).*>(.*?)<.*\/$1>/ Untested …