“JavaScript StartsWith wiele wartości” Kod odpowiedzi

Startwith sprawdź frazy multipl

if (newStr4.startsWith("Mon") || newStr4.startsWith("Tues") || ...)

Or you could use regular expression:

if (newStr4.matches("(Mon|Tues|Wed|Thurs|Fri).*"))
Cute Caterpillar

JavaScript StartsWith wiele wartości

hi hi I tried this in Groovvy
["Mon","Tues","Wed","Thurs"].any { newStr.startsWith(it) }

hope it helps
Powerful Peccary

JavaScript wielokrotne startswith

//There is NO possibility to passing an Array
//like startsWith(["Mon" | "Tues"])
if (newStr4.startsWith("Mon") || newStr4.startsWith("Tues") || ...)

//although you can use regular expression,
//but performance are lower than the solution above
 if (newStr4.matches("(Mon|Tues|Wed|Thurs|Fri).*"))
POG

Odpowiedzi podobne do “JavaScript StartsWith wiele wartości”

Pytania podobne do “JavaScript StartsWith wiele wartości”

Więcej pokrewnych odpowiedzi na “JavaScript StartsWith wiele wartości” w JavaScript

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

Przeglądaj inne języki kodu