“Regex pusty ciąg” Kod odpowiedzi

Wyrażenie regularne, aby usunąć puste linie po tekście

Find: ^(?:[\t ]*(?:\r?\n|\r))+
Replace: ""
Nasty Newt

Regex, aby sprawdzić nie pusty ciąg

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

Regex, aby dopasować pusty ciąg

/^$/ // match exactly ""
ahmad-ali14

Regex pusty ciąg

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 dla nie pustego ciągu

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

Regex nie jest pustym ciągiem

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

Odpowiedzi podobne do “Regex pusty ciąg”

Pytania podobne do “Regex pusty ciąg”

Więcej pokrewnych odpowiedzi na “Regex pusty ciąg” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu