https://github.com/laktek/extract-values
  
  
    A simple helper to extract values from a string based on a pattern. 
    https://github.com/laktek/extract-values
  
        Last synced: 8 months ago 
        JSON representation
    
A simple helper to extract values from a string based on a pattern.
- Host: GitHub
 - URL: https://github.com/laktek/extract-values
 - Owner: laktek
 - Archived: true
 - Created: 2012-10-04T01:52:42.000Z (about 13 years ago)
 - Default Branch: master
 - Last Pushed: 2016-06-29T20:30:22.000Z (over 9 years ago)
 - Last Synced: 2025-03-11T16:42:49.833Z (8 months ago)
 - Language: JavaScript
 - Size: 18.6 KB
 - Stars: 305
 - Watchers: 19
 - Forks: 22
 - Open Issues: 2
 - 
            Metadata Files:
            
- Readme: Readme.md
 
 
Awesome Lists containing this project
README
          ## ExtractValues
This is a simple helper to extract values from a string based on a pattern.
### Examples
```javascript
    extractValues("/2012/08/12/test.html", "/{year}/{month}/{day}/{title}.html")
    >> { "year": "2012", "month": "08", "day": "12", "title": "test" }
    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, delimiters: ["`", "`"] })
    >> {"from": "4th October", "to": "10th October" }
    extractValues("Convert 1500 Grams to Kilograms", "convert {quantity} {from_unit} to {to_unit}", { lowercase: true })
    >> {"quantity": "1500", "from_unit": "grams", "to_unit": "kilograms" }]
```
### How to Use
#### Install as a NPM package
```
    npm install extract-values
```
* Then `require` in your project.
    
```javascript
    var extractValues = require("extract-values");
```
#### Use with web apps (in Browser)
```html
    
    
        var parsedDate = extractValues("/2012/08/12/test.html", "/{year}/{month}/{day}/{title}.html")
        //{ "year": "2012", "month": "08", "day": "12", "title": "test" }
    
```
### Unit Tests
Run `node tests.js`.
```shell
$ node tests.js
14 tests pass
```
### Options
**whitespace** - normalizes the whitespace in the input string, so it can be aligned with the given pattern. You can define the number of continous whitespaces to contain in the string. Making it zero (0) will remove all whitespaces.
**lowercase** - converts the input string to lowercase before matching.
**delimiters** - If specify the delimiters used in the pattern to define the values. Default delimiters are `{` and `}`.
### Licence
[MIT LICENSE](https://github.com/laktek/punch/blob/master/LICENSE)