“Regex für nicht leere Zeichenfolge” Code-Antworten

Regex, um die nicht leere Zeichenfolge zu überprüfen

/^(?!\s*$).+/
Delta Sierra

Regex leere Zeichenfolge

const REGEXP = /^$/;

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

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

console.log(isEmpty); //true
console.log(isNotEmpty); //false
KadzielawaKonrad

Regex für nicht leere Zeichenfolge

^(?!\s*$).+
Terrible Tarantula

Regex ist keine leere Zeichenfolge

const REGEXP = /^$/;

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

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

console.log(isNotEmpty); //false
console.log(isEmpty); //true
KadzielawaKonrad

Ähnliche Antworten wie “Regex für nicht leere Zeichenfolge”

Fragen ähnlich wie “Regex für nicht leere Zeichenfolge”

Weitere verwandte Antworten zu “Regex für nicht leere Zeichenfolge” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen