Vérifiez la chaîne sur la sous-chaîne Godot

There is the 'in' operator.

string = "blaCell bla"
var a = "Cell" in string # true

It is mentioned here:
https://godot.readthedocs.io/en/stable/reference/gdscript.html#operators
Crazy Caracal