Open-Source-Software-Entwicklung und Downloads

Browse Subversion Repository

Contents of /trunk/doc/en/html/macro/syntax/identifiers.html

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3221 - (show annotations) (download) (as text)
Tue Mar 24 09:37:20 2009 UTC (15 years, 2 months ago) by maya
File MIME type: text/html
File size: 1456 byte(s)
CVS から SVN へ移行: trunk に集約
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
3 <HTML>
4 <HEAD>
5 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6 <TITLE>Identifiers and reserved words</TITLE>
7 <META http-equiv="Content-Style-Type" content="text/css">
8 <link rel="stylesheet" href="../../style.css" type="text/css">
9 </HEAD>
10 <BODY>
11
12 <h1>Identifiers and reserved words</h1>
13
14 <h2>1) Variable identifiers</h2>
15
16 <p>
17 The first character must be an alphabetic (A-Z, a-z) or an underscore character "_". Subsequent characters can be alphabetic, underscore or numeric (0-9). Variable identifiers are not case sensitive. The maximum length is 32.
18 </p>
19
20 <pre>
21 Example:
22 VARIABLE
23 _flag
24 </pre>
25
26 <h2>2) Label identifiers</h2>
27
28 <p>
29 Label identifiers consist of alphabetic, underscore or numeric characters, and are not case sensitive. The maximum length is 32.
30 </p>
31
32 <pre>
33 Example:
34 label1
35 100
36 </pre>
37
38 <h2>3) Reserved words</h2>
39
40 <p>
41 The following words are reserved:
42 </p>
43
44 <pre>
45 [Command]
46 bplusrecv, bplussend, changedir... (see the <A HREF="../command/index.html">command list</A>)
47
48 [Operator]
49 and, not, or, xor
50
51 [System variable]
52 groupmatchstr1, groupmatchstr2, groupmatchstr3, groupmatchstr4, groupmatchstr5,
53 groupmatchstr6, groupmatchstr7, groupmatchstr8, groupmatchstr9, inputstr,
54 matchstr, param2, param3, param4, param5, param6, param7, param8, param9,
55 result, timeout
56 </pre>
57
58 </BODY>
59 </HTML>
60

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26