1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

(SRFI-13 Miscellaneous): In string-replace, note

that start1 and end1 optional is a Guile extension.
This commit is contained in:
Kevin Ryde 2003-06-04 15:46:40 +00:00
parent f5f7888d1c
commit 5519096e55

View file

@ -1803,6 +1803,9 @@ strings, breaking it up at a specified character.
Return the string @var{s1}, but with the characters
@var{start1} @dots{} @var{end1} replaced by the characters
@var{start2} @dots{} @var{end2} from @var{s2}.
For reference, note that SRFI-13 specifies @var{start1} and @var{end1}
as mandatory, but in Guile they are optional.
@end deffn
@deffn {Scheme Procedure} string-tokenize s [token-set start end]