Next: Text Operators, Up: Text Library Exports [Index]
is the base x integral interpretation of s. s is expected some sequence of base x digit characters, possibly prefixed (the sequence, not the characters) by some mix of white spaces and sign characters (minuses and pluses, that is). In bases above 10, the letter ‘a’ in either upper or lower cases represents 10, ‘b’ represents 11, and so forth, with ‘z’ representing 35. x is expected between 2 and 36 inclusive. Or zero, in which case the base is assumed 16 if the digits sequence is immediately prefixed by ‘0x’, 8 if the sequence starts with ‘0’, 10 otherwise.
is the real decimal interpretation of s. s is expected some sequence of decimal digit characters, possibly including a single period sign (‘.’), though not in last position, possibly prefixed (the sequence, not the characters) by some mix of white spaces and sign characters (minuses and pluses, that is).
is the integral decimal interpretation of s. s is expected some sequence of decimal digit characters, possibly prefixed (the sequence, not the characters) by some mix of white spaces and sign characters (minuses and pluses, that is). Same as ‘alpha’(s, 10).
is the cardinal decimal interpretation of s. s is expected some sequence of decimal digit characters, possibly prefixed (the sequence, not the characters) by some white spaces.
is the basename of s, what follows the last occurring ‘/’
is the base x, f digits, b wide comma separated blocks representation of m
is the base x, f digits, b wide comma separated blocks representation of z
is the base x, f digits, b wide comma separated blocks representation of m (same as ‘bfxa’(b, f, x, m))
is the concatenation of s1 and s2
is same as ‘cat’(s1, s2)
is the concatenation of s1, s2 and s3
is the concatenation of s1, s2, s3 and s4
is the length long (shorter if fewer characters are available) substring starting from offset in string if offset is a valid position indication, s otherwise
is the p indexed character deleted s string (negative position indications are interpreted with respect to the end of string) if p is a valid position indication, s otherwise
See Negative Indices.
is the base x integral interpretation of s. s is expected some sequence of base x digit characters. In bases above 10, the letter ‘a’ in either upper or lower cases represents 10, ‘b’ represents 11, and so forth, with ‘z’ representing 35. x is expected between 2 and 36 inclusive. Or zero, in which case the base is assumed 16 if the digits sequence is immediately prefixed by ‘0x’, 8 if the sequence starts with ‘0’, 10 otherwise.
is the p to q indexed characters deleted s string (negative position indications are interpreted with respect to the end of string) if p and q are valid position indications, s otherwise
See Negative Indices.
is the before p indexed character c character inserted s string (negative position indications are interpreted with respect to the end of string) if p is a valid position indication, s otherwise
is the decimal representation of m (same as ‘bfxa’(0, 0, 10, m) or ‘bfxinteger’(0, 0, 10, m))
is the decimal representation of z (same as ‘bfxcardinal’(0, 0, 10, z))
Next: Text Operators, Up: Text Library Exports [Index]