M Makumbi Well-Known Member Licensed User May 30, 2020 #1 B4X: [email protected]. how can i automatically remove only the last dot after the word .com please help
B4X: [email protected]. how can i automatically remove only the last dot after the word .com please help
Erel B4X founder Staff member Licensed User Longtime User May 31, 2020 #2 B4X: Dim s As String = ... If s.EndsWith(".") Then s = s.SubString2(0, s.Length - 1) Upvote 0
aeric Expert Licensed User Longtime User Jun 2, 2020 #3 B4X: Dim str As String = "[email protected]." str = str.Replace(".com.", ".com") Upvote 0