fork download
  1. s = "Google and Bert+Amazon+Alexa"
  2. search = "Google and Bert"
  3. if search in s.split('+'):
  4. print(search)
  5. else:
  6. print("NO MATCH!")
Success #stdin #stdout 0.02s 9284KB
stdin
Standard input is empty
stdout
Google and Bert