G-ShadoW Active Member Licensed User Longtime User Dec 7, 2016 #1 How to replace ( " ) from edittext ? B4X: Edittext.text=Edittext.Text.Replace(""","") '?
DonManfred Expert Licensed User Longtime User Dec 7, 2016 #2 G-ShadoW said: Edittext.text=Edittext.Text.Replace(""","") '? Click to expand... B4X: Edittext.text=Edittext.Text.Replace($"""$,"") 'does it work? Upvote 0
G-ShadoW said: Edittext.text=Edittext.Text.Replace(""","") '? Click to expand... B4X: Edittext.text=Edittext.Text.Replace($"""$,"") 'does it work?
G-ShadoW Active Member Licensed User Longtime User Dec 7, 2016 #3 DonManfred said: B4X: Edittext.text=Edittext.Text.Replace($"""$,"") 'does it work? Click to expand... yes, it work's in which cases we can use $ and why? Upvote 0
DonManfred said: B4X: Edittext.text=Edittext.Text.Replace($"""$,"") 'does it work? Click to expand... yes, it work's in which cases we can use $ and why?
S sorex Expert Licensed User Longtime User Dec 7, 2016 #4 B4X: Edittext.text=Edittext.Text.Replace(Chr(0x22),"") Upvote 0
LucaMs Expert Licensed User Longtime User Dec 7, 2016 #5 EditText1.Text = EditText1.Text.Replace(QUOTE, "") Upvote 0
LucaMs Expert Licensed User Longtime User Dec 7, 2016 #6 In this site you can not find help! Upvote 0
DonManfred Expert Licensed User Longtime User Dec 7, 2016 #7 G-ShadoW said: in which cases we can use $ and why? Click to expand... https://www.b4x.com/android/forum/threads/b4x-smart-string-literal.50135/ It can be used everywhere where you need to "build" a String. See Tutorial Upvote 0
G-ShadoW said: in which cases we can use $ and why? Click to expand... https://www.b4x.com/android/forum/threads/b4x-smart-string-literal.50135/ It can be used everywhere where you need to "build" a String. See Tutorial