Giter VIP home page Giter VIP logo

extract-values's Introduction

ExtractValues

This is a simple helper to extract values from a string based on a pattern.

Examples

	extractValues("/2012/08/12/test.html", "/{year}/{month}/{day}/{title}.html")
	>> { "year": "2012", "month": "08", "day": "12", "title": "test" }

	extractValues("John Doe <[email protected]> (http://example.com)", "{name} <{email}> ({url})")
	>> {"name": "John Doe", "email": "[email protected]", "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.
	var extractValues = require("extract-values");
  • For client-side use, simply copy and paste the function (extract_values.js) in to your source.

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 - coverts 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

extract-values's People

Contributors

laktek avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.