H HansDieter Member Licensed User Longtime User Sep 9, 2022 #1 I have an black out. Since str=""" doesn't work, how can i write a " in an string? Hans
Star-Dust Expert Licensed User Longtime User Sep 9, 2022 #2 B4X: Str=Chr(34) Str=$"""$ Str="""" Str="§".Replace("§",chr(34)) Last edited: Sep 9, 2022 Upvote 1
Sandman Expert Licensed User Longtime User Sep 9, 2022 #3 As far as I remember this might also work: B4X: Str='"' Upvote 0
LucaMs Expert Licensed User Longtime User Sep 9, 2022 #4 In B4X language there is the constant QUOTE. However it is rare that it is necessary to use it; what is your case? You should probably use "smart string literal" Upvote 1
In B4X language there is the constant QUOTE. However it is rare that it is necessary to use it; what is your case? You should probably use "smart string literal"
Erel B4X founder Staff member Licensed User Longtime User Sep 9, 2022 #5 Sandman said: As far as I remember this might also work: Click to expand... This will not work. Upvote 0
Sandman Expert Licensed User Longtime User Sep 9, 2022 #6 Erel said: This will not work. Click to expand... Yes, well, apparently I don't remember very far. ? Upvote 0