I'd like to be able to create a string that will end up looking like
<a href="bla bla" somemore stuff "hello world"
with the " in the string. How do I put the "'s in it?
I've tried
but the """" shows nothing on the device
please don't worry about the content of my string - it's just an example
So how do you put a " in a string?
regards, Ricky
<a href="bla bla" somemore stuff "hello world"
with the " in the string. How do I put the "'s in it?
I've tried
B4X:
Dim s As String
s = "<a href=" & """" & "bla bla" & """" & " somemore stuff " & """" & "hello world" & """"
but the """" shows nothing on the device
please don't worry about the content of my string - it's just an example
So how do you put a " in a string?
regards, Ricky