Pregunta

I'm working on a project in Java and I wanted to know if Java had a similar "in"/"not in" operator in Python like the example below.

>>>"jim" in "jimbo"
>>>True
¿Fue útil?

Solución

For strings there is:

"jimbo".contains("jim"); // true

Check the documentation for String. There is also startsWith, endsWith and matches (which uses regular expressions).

Otros consejos

Nope. You should do

"jimbo".contains("jim")
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top