diff --git a/Readme.md b/Readme.md index 9426bb2..20f2095 100644 --- a/Readme.md +++ b/Readme.md @@ -12,8 +12,8 @@ This is a simple helper to extract values from a string based on a pattern. extractValues("John Doe (http://example.com)", "{name} <{email}> ({url})") >> {"name": "John Doe", "email": "john@example.com", "url": "http://example.com" } - extractValues"from 4th October to 10th October", "from `from` to `to`", { whitespace: 1, delimeters: ["`", "`"] }]) - >> {"from": "4th October", "to": "10th October" }] + extractValues("from 4th October to 10th October", "from `from` to `to`", { whitespace: 1, delimeters: ["`", "`"] }) + >> {"from": "4th October", "to": "10th October" } ``` ### How to Use