Node:SRFI-13 Searching, Next:SRFI-13 Case Mapping, Previous:SRFI-13 Prefixes/Suffixes, Up:SRFI-13
Use these procedures to find out whether a string contains a given character or a given substring, or a character from a set of characters.
string-index s char_pred [start end] | Scheme Procedure |
string-index-right s char_pred [start end] | Scheme Procedure |
Search through the string s from left to right (right to left),
returning the index of the first (last) occurrence of a character which
|
string-skip s char_pred [start end] | Scheme Procedure |
string-skip-right s char_pred [start end] | Scheme Procedure |
Search through the string s from left to right (right to left),
returning the index of the first (last) occurrence of a character which
|
string-count s char_pred [start end] | Scheme Procedure |
Return the count of the number of characters in the string
s which
|
string-contains s1 s2 [start1 end1 start2 end2] | Scheme Procedure |
string-contains-ci s1 s2 [start1 end1 start2 end2] | Scheme Procedure |
Does string s1 contain string s2? Return the index
in s1 where s2 occurs as a substring, or false.
The optional start/end indices restrict the operation to the
indicated substrings.
|