Answers for "regex js pattern"

10

regular expression javascript

// Tests website Regular Expression against document.location (current page url)
if (/^https\:\/\/example\.com\/$/.exec(document.location)){
	console.log("Look mam, I can regex!");
}
Posted by: Guest on March-12-2020
0

js regrex

var s = "Please yes\nmake my day!";
s.match(/yes.*day/);
// Returns null
s.match(/yes[^]*day/);
// Returns 'yes\nmake my day'
Posted by: Guest on January-07-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language