This module provides two fluent builder APIs to make regex patterns. One is used for piecewise building of a RegExp, while the other is used to create extended regexes from user-defined string templates.
Table of Contents
RegexBuilder
Start building with Regex.new()
:
import { Regex } from 'https://deno.land/x/regexbuilder/mod.ts';
Regex.new()
.add('foo')
.add('bar')
.build();
>> /foobar/
Adding regex literals together is also supported:
.add(/foo/)
.add(/bar/)
.build();
>> /foobar/
Groups
To add groups either use the specific method call or use the more general group
method where you provide the content and the group type:
.capture('foo'); >> /(foo)/
.noncapture('bar'); >> /(?:bar)/
.group('bar', 'ncg') >> /(?:bar)/
Named groups should be made with namedGroup
:
.namedGroup('foo', 'bar'); >> /(?<foo>bar)/
Nesting
A nested structure in the pattern can be started by calling nest
for a capture group or specific calls to nest a different group. Call unnest
to finish a nested tier, or provide it with an integer to finish multiple tiers at once:
Regex.new()
.nest()
.add('foo')
.nestNonCapture()
.add('bar')
.unnest() // or use .unnest(2)
.unnest()
.build()
>> /(foo(?:bar))/
This can be shortened by using composite calls such as nestAdd
to combine nest
and add
in once call. If no group type is provided it will default to a capturing group, in other cases you need to provide the group type as the second argument. To nest a named group, use nestNamed
.
Regex.new()
.nestAdd('foo')
.nestAdd('bar', 'ncg')
.unnest(2)
.build()
>> /(foo(?:bar))/
Assertions
.lineStart()
.add('foo')
.lineEnd()
>> /^foo$/
.startsWith('foo') >> /^foo/
.endsWith('bar') >> /bar$/
.add('foo')
.lookahead('bar')
// or
.followedBy('bar')
>> /foo(?=bar)/
Alternation
.alts(['foo','bar','baz');
>> /foo|bar|baz/
.alts(['foo','bar','baz', '.');
>> /foo.bar.baz/
.altGroup(['foo', 'bar', 'baz'], 'ncg')
>> /(?:foo|bar|baz)/
Quantifiers
.add('foo')
.times(2)
>> /foo{2}/ // matches fooo
.between(2, 5)
>> /foo{2,5}/ // matches foo with 2 to 5 more o's
.atleast(2)
>> /foo{2,}/ // matches foo with 2 to any more o's
.zeroPlus()
>> /foo*/ // matches fo with 0 to any more o's
.onePlus()
>> /foo+/ // matches fo with 1 to any more o's
Backreferences
.capture('foo')
.add('[: ]+')
.ref(1)
>> /(foo)[: ]+\1/
Flags
.add('foo')
.flags('g')
>> /foo/g
PatternBuilder
is a methodology for building regexes according to templates and can be used to manage the complexity of handling lengthy patterns.
Start building with Pattern.new
:
import { Pattern } from 'https://deno.land/x/regexbuilder/mod.ts';
let pattern = Pattern.new()
.settings({
template: '(greetings) (?=regions)',
flags: 'i'
})
.data({
greetings: ['hello', 'good morning', 'howdy'],
regions: ['world', 'new york', '{{foo}}']
})
.placeholders({ foo: ['bar'] })
.build();
>> /(hello|good morning|howdy) (?=world|new york|bar)/
Templates
give a name to any arbitrary part of a pattern, whether they are inside a capture group or not. Any word in the template will be substituted with the values of the corresponding key in the data. Any array in the data will be joined with pipe |
symbols to create alternates.
.settings({
template: 'field_names[: ]+(field_values)'
})
.data({
field_names: ['Product Volume', 'volume']
field_values: ['100ml', '5L', String.raw`\d{1,4}[cml]`]
})
Placeholders
Declare a set of placeholder substitutes to reuse them in multiple patterns. Add placeholders to the data with double curly braces: {{placeholder}}
const ph = {
foo: ['bar', 'baz'], // changes {{foo}} in any key in the data to bar|baz
};
Pattern.new()
// .. settings, data
.placeholders(ph)
Exceptions
Exclude values you know you donāt want in your match results. Note that this will restructure your template as exclude|({the-rest-of-the-template})
and place any desired full match in capture group 1 while adding exclusions to group 0.
Pattern.new()
.settings({ template: 'years'})
.data({ years: String.raw`20\d{2}` })
.except("2000")
The pattern above will build to /2000|(20\d{2})/
.
Wildcard Pattern
Add a wildcard to be searched for after a set of known values. Note that this will restructure your template as {the-rest-of-the-template}|(wildcard)
, adding a capture group but not changing the order of existing ones.
Pattern.new()
.settings({ template: 'years'})
.data({ years: ['2018', '2019', '2020'] })
.wildcard(String.raw`20\d{2}\b`)
The pattern above will build to /2018|2019|2020|(20\d{2}\b)/
. Any matched wildcard year will be placed in group 1.
Match Maps
Match results can be mapped to their patternās template with the matchMap
method:
.settings({ template: '(greeting) (region)' })
.data({ greeting: 'hello', region: 'world' })
.build()
>> /(hello) (world)/
pattern.matchMap('hello world')
>> { full_match: 'hello world', greeting: 'hello', region: 'world' }