Periksa string pada substring 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