Sebastjan Member Licensed User Longtime User Jun 6, 2018 #1 hey guys, VB6 has LIKE comparrison of strings: "Sebastjan" LIKE "Seba" <false "Sebastjan" LIKE "Seba*" <true "Sebastjan" LIKE "??ba*" < true does B4A has something like that or how would you
hey guys, VB6 has LIKE comparrison of strings: "Sebastjan" LIKE "Seba" <false "Sebastjan" LIKE "Seba*" <true "Sebastjan" LIKE "??ba*" < true does B4A has something like that or how would you
LucaMs Expert Licensed User Longtime User Jun 6, 2018 #2 Sebastjan said: does B4A has something like Click to expand... No. You (and I too) should study Regex. Upvote 0
Sebastjan said: does B4A has something like Click to expand... No. You (and I too) should study Regex.
Erel B4X founder Staff member Licensed User Longtime User Jun 6, 2018 #3 The first one: B4X: If s.Contains("Seba") Then The other ones should be implemented with Regex. Upvote 0
Sebastjan Member Licensed User Longtime User Jun 6, 2018 #4 Thank you for answers. will check regex Upvote 0