So I would like my code below to return TRUE, even as the front 2 letters are different.
Is there a way to accomplish this? I know == does not work as it compares both exactly.
if("UKVICTORIA" == "USVICTORIA") {
print("TRUE")} else {
print("FALSE")
}
}