GeordieG
0
Q:

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).*"))
1

New to Communities?

Join the community