I have the following c# code:
string myString = "TRANSACTION HAS BEEN COMPLETED";
bool check = myString.Contains("TRANSACTION");
On my dev machine and local servers check
will be true.
But now we have found that on a server in Turkey this returns false.
Not sure if this is related to regional settings, but is there a better way to check for substrings that are more safe to Culture/Language?