From 84854cf029e85e2686822ae9658bbb0b923e04da Mon Sep 17 00:00:00 2001 From: Yuichi Nishiwaki Date: Mon, 31 Mar 2014 20:52:21 +0900 Subject: [PATCH] update readme --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 642f5084..8f9a5053 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,20 @@ Picrin is a lightweight scheme implementation intended to comply with full R7RS Explicit renaming macro family. + - `(picrin regexp)` + + - `(regexp? obj)` + - `(regexp ptrn [flags])` + + Compiles pattern string into a regexp object. A string `flags` may contain any of #\g, #\i, #\m. + + - `(regexp-match re input)` + + Returns two values: a list of match strings, and a list of match indeces. + + - `(regexp-replace re input txt)` + - `(regexp-split re input)` + - `(picrin user)` When you start the REPL, you are dropped in here.