#DQUOTE$, #CRLF$ and so on..

Working on new editor enhancements?
GenRabbit
Enthusiast
Enthusiast
Posts: 118
Joined: Wed Dec 31, 2014 5:41 pm

#DQUOTE$, #CRLF$ and so on..

Post by GenRabbit »

Is there a list for all Purebasic constants? Like for color, ASCII names like #DBUOTE$ and strings like #CRLF anywhere?

preferable divided into group, Like Color, ANSI/CHR etc.
User avatar
skywalk
Addict
Addict
Posts: 3960
Joined: Wed Dec 23, 2009 10:14 pm
Location: Boston, MA

Re: #DQUOTE$, #CRLF$ and so on..

Post by skywalk »

Tools - Structure Viewer - Constants.
The nice thing about standards is there are so many to choose from. ~ Andrew Tanenbaum
User avatar
Josh
Addict
Addict
Posts: 1183
Joined: Sat Feb 13, 2010 3:45 pm

Re: #DQUOTE$, #CRLF$ and so on..

Post by Josh »

A part of Pb-constants you can find here:
https://www.purebasic.com/documentation ... tants.html
sorry for my bad english
GenRabbit
Enthusiast
Enthusiast
Posts: 118
Joined: Wed Dec 31, 2014 5:41 pm

Re: #DQUOTE$, #CRLF$ and so on..

Post by GenRabbit »

Thanks for the list Josh. These Constants are easy to find, they are described with the commands.

Tools - Structure Viewer - Constants. This gives you the Constants, but no idea what they are for? what is #DC3 for?

I found #DQUOTE$ by luck. Didn't know it existed. What about #space$ does this exist? or #Enter?

Thats why It would be nice to have a say a list with every predefined constants as an example.

Or the list with #black, #white etc in one list and so on.
User avatar
mk-soft
Always Here
Always Here
Posts: 5313
Joined: Fri May 12, 2006 6:51 pm
Location: Germany

Re: #DQUOTE$, #CRLF$ and so on..

Post by mk-soft »

GenRabbit wrote: ...
Tools - Structure Viewer - Constants. This gives you the Constants, but no idea what they are for? what is #DC3 for?

Code: Select all

Debug "Show Tools -> Character Table"
Debug #NUL
Debug #SOH
Debug #DC1
Debug #DC3
Debug #DC4
:wink:

P.S. Control Characters Link: https://en.wikipedia.org/wiki/Control_character
My Projects ThreadToGUI / OOP-BaseClass / EventDesigner V3
PB v3.30 / v5.75 - OS Mac Mini OSX 10.xx - VM Window Pro / Linux Ubuntu
Downloads on my Webspace / OneDrive
Post Reply