B bixmatech Member Licensed User Jun 19, 2017 #1 Hello. i want to print a string which have quote in side it, escape characters are not working, so, how can I achieve that? Thanks
Hello. i want to print a string which have quote in side it, escape characters are not working, so, how can I achieve that? Thanks
DonManfred Expert Licensed User Longtime User Jun 19, 2017 #2 B4X: Dim mystr As String = $"Test with "Quotes""$ Log(mystr.Replace($"""$,"")) Maybe i do not understand the question right... What are you trying to archieve? Upvote 0
B4X: Dim mystr As String = $"Test with "Quotes""$ Log(mystr.Replace($"""$,"")) Maybe i do not understand the question right... What are you trying to archieve?
Erel B4X founder Staff member Licensed User Longtime User Jun 20, 2017 #3 The replace is not required: B4X: Log($"Test with "Quotes""$) 'output: Test with "Quotes" Upvote 0