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\"
String str="hello world"; System.out.println(str.contains("world"));//true System.out.println(str.contains("world1"));//false