Can we get a #QUOTE$?
Posted: Sun Oct 09, 2005 1:22 pm
There is a contstant for double quotes but no for single. That's on my wishlist and should not take too long to make.
http://www.purebasic.com
https://www.purebasic.fr/english/
Code: Select all
s.s = #QUOTE$ + s + #QUOTE$
Code: Select all
s.s = "'" + s + "'"
Code: Select all
#QUOTE$ = Chr(39)
#QUOTE$ = "'"
Debug #QUOTE$
Me to, but if it makes Trond happy then why not...dracflamloc wrote:I really don't see a need for this. Just my opinion
Code: Select all
#NewLine = Chr(13)+Chr(10)
MessageRequester("Test","Line 1"+#NewLine+"Line 2")
Already Done:Joakim Christiansen wrote: A #NewLine would also be cool.![]()
Code: Select all
#NewLine = Chr(13)+Chr(10) MessageRequester("Test","Line 1"+#NewLine+"Line 2")
Code: Select all
#CRLF$
I was thinking that too. Should we also have #A$ for the A character, and so on? It's stupid.dracflamloc wrote:I really don't see a need for this. Just my opinion
Code: Select all
Debug #DOUBLEQUOTE$
Debug #DQUOTE$