NOTE: This library is deprecated; use racket/base, instead. Also see racket/string
The mzlib/string library re-exports several functions from scheme/base:
It also re-exports regexp-try-match as regexp-match/fail-without-reading .
procedure
hide-dots?case-sensitive?case-sensitive? : any/c
The case-sensitive? argument determines whether the resulting regexp is case-sensitive.
If simple? is true, then ranges with [...] in str are treated as literal character sequences.
procedure
( string-lowercase! str)→void?
procedure
( string-uppercase! str)→void?
procedure
( eval-string str[err-handler])→list?
#f (the default) which means that errors are not caught;
a one-argument procedure, which will be used with an exception (when an error occurs) and its result will be returned
a thunk, which will be used to produce a result.
procedure
( expr->string expr)→string?
expr:any/c
procedure
( read-from-string str[err-handler])→any/c
procedure
( read-from-string-all str[err-handler])→list?