Warning: This is the manual of the legacy Guile 2.2 series. You may want to read the manual of the current stable series instead.
Next: Alphabetic Case Mapping, Previous: String Comparison, Up: Strings [Contents][Index]
Search through the string s from left to right, returning the index of the first occurrence of a character which
Return #f
if no match is found.
Search through the string s from right to left, returning the index of the last occurrence of a character which
Return #f
if no match is found.
Return the length of the longest common prefix of the two strings.
Return the length of the longest common prefix of the two strings, ignoring character case.
Return the length of the longest common suffix of the two strings.
Return the length of the longest common suffix of the two strings, ignoring character case.
Is s1 a prefix of s2?
Is s1 a prefix of s2, ignoring character case?
Is s1 a suffix of s2?
Is s1 a suffix of s2, ignoring character case?
Search through the string s from right to left, returning the index of the last occurrence of a character which
Return #f
if no match is found.
Search through the string s from left to right, returning the index of the first occurrence of a character which
Search through the string s from right to left, returning the index of the last occurrence of a character which
Return the count of the number of characters in the string s which
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.
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. Character comparison is done case-insensitively.
Next: Alphabetic Case Mapping, Previous: String Comparison, Up: Strings [Contents][Index]