Android Question escape quote character

bixmatech

Member
Licensed User
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
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
Top