Answers for "javascript startswith multiple values"

1

startwith check for multipl frases

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

Or you could use regular expression:

if (newStr4.matches("(Mon|Tues|Wed|Thurs|Fri).*"))
Posted by: Guest on November-16-2020
1

javascript multiple 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).*"))
Posted by: Guest on April-03-2020
0

javascript startswith multiple values

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

hope it helps
Posted by: Guest on August-05-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language