Computer Science Canada

Dont kno what to call this?

Author:  bc123 [ Mon Oct 19, 2009 2:51 pm ]
Post subject:  Dont kno what to call this?

hey guys i need to kno why this doesnt work?


http://www.network-science.de/ascii/

on this site type in guess and on the font find isometric1 and please tell me why i cant get it in turing
i put it in
put " "

but theres still errors and today my friend told me to use sumthing escape but i dont remember the first word! HELPP

Author:  Tony [ Mon Oct 19, 2009 3:02 pm ]
Post subject:  RE:Dont kno what to call this?

\ is a character escape.
code:

put "such as\n\"\\"

Author:  ecookman [ Mon Oct 19, 2009 4:24 pm ]
Post subject:  RE:Dont kno what to call this?

prettymuch where you see a \ put another one

Author:  D_homes [ Mon Nov 09, 2009 9:00 pm ]
Post subject:  RE:Dont kno what to call this?

Escape Character used for:

code:

 \"              % quotation mark character
  \n or \N    % end of line character
  \t or \T    % tab character
  \f or \F     % form feed character
  \r or \R     %return character
  \b or \B      %backspace character
  \e or \E      %escape character
  \d or \D     %delete character
  \\              % backslash character

Author:  Zren [ Mon Nov 09, 2009 10:17 pm ]
Post subject:  RE:Dont kno what to call this?

Easiest way to copy paste this ASCII code into a text file and to read it from there using open/close and other file I/O stuff. Thus it would automatically generate the escape characters (that's assuming your good with file I/O).

Or you could create your own string replacement program (really easy if you know PHP's addslashes() function) and copy the output into your put statement.

Author:  bc123 [ Wed Nov 11, 2009 10:37 pm ]
Post subject:  Re: RE:Dont kno what to call this?

Zren @ Mon Nov 09, 2009 10:17 pm wrote:
Easiest way to copy paste this ASCII code into a text file and to read it from there using open/close and other file I/O stuff. Thus it would automatically generate the escape characters (that's assuming your good with file I/O).
Or you could create your own string replacement program (really easy if you know PHP's addslashes() function) and copy the output into your put statement.


i dont even kno what I/O is XD... what is it exactly??

i thought u ment like put into a regular text then use the open demmand thing like

open (input) blbalba anyways cool

Author:  DtY [ Wed Nov 11, 2009 10:58 pm ]
Post subject:  RE:Dont kno what to call this?

I/O means Input/Output, it means exactly what it sounds like Smile


: