giga Well-Known Member Licensed User Longtime User Dec 29, 2012 #1 Does anyone know how to show quote " symbol in a text document when using writer. I tried this with no luck. B4X: Writeset.WriteLine(""") Thanks to ALL for their help.
Does anyone know how to show quote " symbol in a text document when using writer. I tried this with no luck. B4X: Writeset.WriteLine(""") Thanks to ALL for their help.
giga Well-Known Member Licensed User Longtime User Dec 29, 2012 #2 giga said: Does anyone know how to show quote " symbol in a text document when using writer. I tried this with no luck. B4X: Writeset.WriteLine(""") Thanks to ALL for their help. Click to expand... :BangHead: Nevermind I caught it Chr(34) Thanks Extra caffeine needed next time!! Upvote 0
giga said: Does anyone know how to show quote " symbol in a text document when using writer. I tried this with no luck. B4X: Writeset.WriteLine(""") Thanks to ALL for their help. Click to expand... :BangHead: Nevermind I caught it Chr(34) Thanks Extra caffeine needed next time!!
lagore Active Member Licensed User Longtime User Dec 29, 2012 #3 You ca also use "QUOTE" As String 'Quote character. The value of Chr(34). ' It is a B4a keyword It make the code a little more readable. Upvote 0
You ca also use "QUOTE" As String 'Quote character. The value of Chr(34). ' It is a B4a keyword It make the code a little more readable.
Erel B4X founder Staff member Licensed User Longtime User Dec 30, 2012 #4 Note that starting from the next version you will also be able to write: B4X: Writeset.WriteLine("""") 'double quotes are treated as a quote. Upvote 0
Note that starting from the next version you will also be able to write: B4X: Writeset.WriteLine("""") 'double quotes are treated as a quote.
giga Well-Known Member Licensed User Longtime User Dec 30, 2012 #5 Thanks Guys for the reply. In Case anyone else needs a complete list of Chr Values. I found this link: VB Chr Values - gtwiki Not sure if they all work in B4A but shows for VB. Hope this is OK Erel. Upvote 0
Thanks Guys for the reply. In Case anyone else needs a complete list of Chr Values. I found this link: VB Chr Values - gtwiki Not sure if they all work in B4A but shows for VB. Hope this is OK Erel.