0 votes

Hello,

is there a function to compare 2 string ?
I'm from 'C' and I'm lost

Thank you.

in Engine by (27 points)

if test[1] in "moi" :
print("ok")

???

1 Answer

0 votes

If by "compare" you mean check equality, you can just do string1 == string2 which gives you true if the strings are equal.

If you need a comparison usable for alphabetic sorting, you can also do string1 < string2, which returns true if string1 comes before string2.

by (29,088 points)
Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.