string-split in DrScheme
How do I do equivalent of python's str.split in DrScheme? SRFI-13 doesn开发者_Python百科't seem to have it provided.
regexp-split
, probably, with regexp-quote
on the string first to make it not behave like a regexp.
string-tokenize in SRFI-13
精彩评论