Each of the strings a and b must either be single
characters, or else the (two or more digit) base-ten numeric representation
of a single
character. $replace() evaluates to string c, but with
each instance of character a replaced by character b.
Find the first occurrence of the (one-word) string what
in string text. Evaluates to position number of what
in text. (The first position is 0.) Evaluates to "-1"
if not found.
Find the last occurrence of the (one-word) string what
in text. Evaluates to position number of what in
text. (The first position is 0.)
Evaluates to "-1" if not found.
Date must be a date of form DD-MMM-YY[YY].
The function evaluates to its equivalent "epoch" time, i.e.
the number of seconds since Jan 1, 1970.
(See $time().)
Treats all of the words as a single word.
(It evaluates to the string words, with all of the
blanks replaced with a non-printable control character.)
This function is useful in several different circumstances:
When comparing two multi-word strings, as in: $equal ($quote (string1) $quote (string2))
To combine several words as one argument to the
include directive, as in:
include file.i $(cnum) $quote(conference description)
To supply a multi-word string to a function that
specifically expects a $quote'd string, such as
$add_resp().
Returns the decimal value of the pos'th character
in string.
The first character in string is at position 0.
Positions beyond the end of the string return a character
value of 0.