Return to 'original' versions of TEDIT files
This commit is contained in:
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
@@ -56,24 +56,24 @@ If X is not a string, it is converted to one. For example,
|
||||
SUBSTRING does not actually copy any characters, but simply creates a new string pointer to the characters in X. If OLDPTR is a string pointer, it is modified and returned.
|
||||
(GNC(GNC (Function) NIL NIL ("4") 3) X) [Function]
|
||||
ªGet Next Character.º Returns the next character of the string X (as a symbol); also removes the character from the string, by changing the string pointer. Returns NIL if X is the null string. If X isn't a string, a string is made. Used for sequential access to characters of a string. Example:
|
||||
¬(SETQ FOO "ABCDEFG")
|
||||
_(SETQ FOO "ABCDEFG")
|
||||
"ABCDEFG"
|
||||
¬(GNC FOO)
|
||||
_(GNC FOO)
|
||||
A
|
||||
¬(GNC FOO)
|
||||
_(GNC FOO)
|
||||
B
|
||||
¬FOO
|
||||
_FOO
|
||||
"CDEFG"
|
||||
Note that if A is a substring of B, (GNC A) does not remove the character from B.
|
||||
(GLC(GLC (Function) NIL NIL ("4") 3) X) [Function]
|
||||
ªGet Last Character.º Returns the last character of the string X (as a symbol); also removes the character from the string. Similar to GNC. Example:
|
||||
¬(SETQ FOO "ABCDEFG")
|
||||
_(SETQ FOO "ABCDEFG")
|
||||
"ABCDEFG"
|
||||
¬(GLC FOO)
|
||||
_(GLC FOO)
|
||||
G
|
||||
¬(GLC FOO)
|
||||
_(GLC FOO)
|
||||
F
|
||||
¬FOO
|
||||
_FOO
|
||||
"ABCDE"
|
||||
(CONCAT(CONCAT (Function) NIL NIL ("4") 4) X1 X2 ... XN) [NoSpread Function]
|
||||
Returns a new string which is the concatenation of (copies of) its arguments. Any arguments which are not strings are transformed to strings. Examples:
|
||||
@@ -125,25 +125,25 @@ Note: If NEG = T, STRPOSL must call MAKEBITTABLE whether A is a list or a bit t
|
||||
|
||||
[This page intentionally left blank]
|
||||
| ||||