Package Exports
- oniguruma
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (oniguruma) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Oniguruma Node module 
Native Node bindings to the Oniguruma regular expressions library.
Read all about Oniguruma regular expressions here.
Installing
npm install oniguruma
Building
- Clone the repository
- Run
npm install
- Run
grunt
to compile the CoffeeScript and native code - Run
npm test
to run the specs
Using
{OnigRegExp, OnigScanner} = require 'oniguruma'
OnigScanner(patterns)
Create a new scanner with the given patterns.
patterns
- An array of string patterns.
OnigScanner.findNextMatch(string, startPosition)
Find the next match from a given position.
string
- The string to search.
startPosition
- The position to start at, defaults to 0
.
Returns an object containing details about the match or null
if no match.
Example
scanner = new OnigScanner(['c', 'a(b)?'])
match = scanner.findNextMatch('abc')
console.log match
{
index: 1, # Index of the best pattern match
captureIndices: [
{index: 0, start: 0, end: 2, length: 2}, # Entire match
{index: 1, start: 1, end: 2, length: 1} # Match of first capture group
]
}
OnigRegExp(pattern)
Create a new regex with the given pattern.
pattern
- A string pattern.
OnigRegExp.search(string, startPosition)
Search the string for a match starting at the given position.
string
- The string to search.
startPosition
- The position to start the search at, defaults to 0
.
Returns an array of objects for each matched group or null
if no match was
found.
Example
regex = new OnigRegExp('a([b-d])c')
match = regex.search('!abcdef')
console.log match
[
{index: 0, start: 1, end: 4, match: 'abc', length: 3}, # Entire match
{index: 1, start: 2, end: 3, match: 'b', length: 1} # Match of first capture group
]
OnigRegExp.test(string)
Test if this regular expression matches the given string.
string
- The string to test against.
Returns true
if at least one match, false
otherwise.