fork download
  1. import java.util.*;
  2. import java.lang.*;
  3. import java.io.*;
  4. class Ideone
  5. {
  6. public static void main (String[] args) throws java.lang.Exception
  7. {
  8. String str = "star wars";
  9. String[] arr = {"star war","Star War","Starwars","star wars","pirates of the caribbean","long strage trip","drone","snatched (2017)"};
  10. for(String s: arr){
  11. if(str.contains(s))
  12. System.out.println(s);
  13. }
  14.  
  15. }
  16. }
Success #stdin #stdout 0.04s 4386816KB
stdin
Standard input is empty
stdout
star war
star wars