Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
backslash - continuation and escape character
Description
The backslash character serves several purposes in Maple: as a continuation character, as an inert separator, and as an escape character to introduce control characters.
In 2-D math, characters that are shortcut keys must be escaped. To do this, type a backslash followed by the character. For more information, see the section Escaping Characters that are Shortcut Keys in 2-D Math Shortcut Keys and Hints.
When a backslash character appears as the last character on an input line, whether typed at the Maple command line, or read from a file, the backslash, and the following line ending, is ignored. In other words, the subsequent line is treated as a continuation of the current line.
When a backslash occurs in the middle of a sequence of characters that is contained within double quotes (") or backquotes (`) and it is immediately followed by one of the following characters, the corresponding control character is introduced (if applicable):
Character
Meaning
ASCII Name
a
bell (alert)
BEL
b
backspace
BS
e
escape
ESC
f
form feed
FF
n
new line (line feed)
LF
r
carriage return
CR
t
horizontal tab
HT
v
vertical tab
VT
x
hexadecimal encoding
\
backslash
When a backslash occurs in the middle of a sequence of characters that is contained within double quotes or backquotes and it is not followed by one of the previously listed characters, the backslash is simply ignored.
The sequence \x must be immediately followed by two hexadecimal digits (0 through 9, A through F, or a through f). Any two digits except 00 are permissible. Values above 7F will display in a platform and character set dependent manner.
The backslash is ignored if it occurs within numbers. Therefore, when entering long numbers, the backslash can be used to separate groups of digits for improved readability.
Note to Windows users: when typing filenames, which use the backslash as a directory separator, you can either type each backslash as two backslashes, or you can use forward slashes.
On input lines beginning with the ! (shell command) or ? (help command) characters, backslashes are not processed by Maple. For ! lines, the backslashes are passed on to the underlying operating system shell as part of the command. (Refer to escape for more information). For ? lines, the backslash is treated literally. That is, ?\ displays this help page.
Examples Using \
`x\y`;
3.14159\26535\89793\23846;
abcdefghijklm := 67;
12 + abcdefghijklm;
"This sentence contains\na line break";
`This sentence is noisy on text-based versions of Maple\a`;
"This contains\x0Aa line break and some 8-bit characters: \x9A \xBC";
for i to 5 do printf("\t%d\t%2d\n",i,i^2) end do;
1 1 2 4 3 9 4 16 5 25
See Also
2-D Math Shortcut Keys and Hints, escape, name, string
Download Help Document