Sorry, there's a typo. Here it is. On Thu, Dec 29, 2011 at 5:32 PM, Nala Ginrut wrote: > hi guilers! > It seems like there's no "regexp-split" procedure in Guile. > What we have is "string-split" which accepted Char only. > So I wrote one for myself. > > ------python code----- > >>> import re > >>> re.split("([^0-9])", "123+456*/") > [’123’, ’+’, ’456’, ’*’, ’’, ’/’, ’’] > --------code end------- > > The Guile version: > > ----------guile code------- > (regexp-split "([^0-9])" "123+456*/") > ==>("123" "+" "456" "*" "" "/" "") > ----------code end-------- > > Anyone interested in it? > >