Android Question Smart $"string"$ question

JesseW

Active Member
Licensed User
Longtime User
in CSVParser (which I greatly appreciate btw...) there is a line
B4X:
word = word.Replace(QUOTE, $""""$)
if I'm understanding smart strings correctly, this could have also been writen as
B4X:
word = word.Replace(QUOTE, """""")
is this correct?
 
Top