how to find if the line contains spcific sequence of string java code example
Example: contains example in java
String s1 = "My name is GFG";
// prints true
System.out.println(s1.contains("GFG"));
// prints false
System.out.println(s1.contains("geeks"));