Hi I have to compute if a given string is substring of a bigger string. For example
String str = \"Hallo my world\"; String substr = \"my\"
if (str.indexOf(substr) >= 0) { // do something }