DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 

(guile.info.gz) SRFI-13 Miscellaneous

Info Catalog (guile.info.gz) SRFI-13 Replicate/Rotate (guile.info.gz) SRFI-13 (guile.info.gz) SRFI-13 Filtering/Deleting
 
 39.11.14 Miscellaneous
 ----------------------
 
 `string-replace' is for replacing a portion of a string with another
 string and `string-tokenize' splits a string into a list of strings,
 breaking it up on characters not belonging to a specified character set.
 
  -- Scheme Procedure: string-replace s1 s2 [start1 end1 start2 end2]
      Return the string S1, but with the characters START1 ... END1
      replaced by the characters START2 ... END2 from S2.
 
  -- Scheme Procedure: string-tokenize s [token-set start end]
      Split the string S into a list of substrings, where each substring
      is a maximal non-empty contiguous sequence of characters from the
      character set TOKEN_SET, which defaults to an equivalent of
      `char-set:graphic'.  If START or END indices are provided, they
      restrict `string-tokenize' to operating on the indicated substring
      of S.
 
Info Catalog (guile.info.gz) SRFI-13 Replicate/Rotate (guile.info.gz) SRFI-13 (guile.info.gz) SRFI-13 Filtering/Deleting
automatically generated byinfo2html