I'm bit afraid to ask, but...
It seems that $"$ is needed to build a string with special chars in it like:
Logging the value shows the raw value without ":
Same as
I haven't found any documentation about the $"$. So what's the secret?
It seems that $"$ is needed to build a string with special chars in it like:
B4X:
Dim m As Map = CreateMap("to": $"${Devtoken}"$)
Logging the value shows the raw value without ":
B4X:
Log (m.Get("to"))
Same as
B4X:
Dim m As Map = CreateMap("to": Devtoken)
I haven't found any documentation about the $"$. So what's the secret?