Answers for "javascript regex One or more occurrences of the pattern"

1

javascript regex match sequence

// Regular expression match sequence of characters
console.log(/abc/.test("abcde")); // true
console.log(/abc/.test("abxde")); // false
Posted by: Guest on June-28-2020
0

javascript regex One or more occurrences of the pattern

// Regular expression 1 or more occurrences of the pattern
console.log(/'\d+'/.test("'123'")); // true
console.log(/'\d+'/.test("''")); // false

let cartoonCrying = /boo+(hoo+)+/i;
console.log(cartoonCrying.test("Boohoooohoohooo"));// true
Posted by: Guest on June-28-2020

Code answers related to "javascript regex One or more occurrences of the pattern"

Code answers related to "Javascript"

Browse Popular Code Answers by Language