Next: strings filter, Previous: strings prefix, Up: strings [Index]
Search through the string from the left or right, returning the index of the first occurrence of a character which:
If no match is found: Return #f
.
Search through the string from the left or right, returning the index of the first occurrence of a character which:
If no match is found: Return #f
.
Return a count of the number of characters in str that satisfy the char/char-set/pred argument:
Return true if the selected substring of str1 contains the
selected substring of str2, else return #f
. The return
value is the index in str1 where the substring of str2
occurs.
Build and return a copy of the selected substring of src, in which the occurrences of the selected substring of pattern are replaced with the selected substring of replace.
At most max-replacement-count occurrences are replaced: if it is
zero, the selected substring of src is returned; if it is
+inf.0
, all the occurrences are replaced.
Next: strings filter, Previous: strings prefix, Up: strings [Index]