Answers for "regex match 1 or empty"

1

regex to check non empty string

/^(?!\s*$).+/
Posted by: Guest on November-17-2020
0

regex empty string

const REGEXP = /^$/;

const validate = (text) => {     
    return REGEXP.test(text);
}

const isEmpty = validate("");
const isNotEmpty = validate("x");

console.log(isEmpty); //true
console.log(isNotEmpty); //false
Posted by: Guest on May-24-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language