Skip to content

Commit 43bea9c

Browse files
committed
feat: basic wordBoundary implementations
1 parent 2466173 commit 43bea9c

File tree

2 files changed

+31
-2
lines changed

2 files changed

+31
-2
lines changed

src/constructs/__tests__/anchors.test.tsx

+19-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
import { endOfString, startOfString } from '../anchors';
2-
import { oneOrMore } from '../quantifiers';
1+
import { buildRegExp } from '../../builders';
2+
import { endOfString, startOfString, wordBoundary } from '../anchors';
3+
import { any, notWhitespace } from '../character-class';
4+
import { oneOrMore, zeroOrMore } from '../quantifiers';
35

46
test('`startOfString` basic cases', () => {
57
expect(startOfString).toEqualRegex(/^/);
@@ -18,3 +20,18 @@ test('`endOfString` basic cases', () => {
1820
test('`endOfString` regex tests', () => {
1921
expect([oneOrMore('a'), endOfString]).toMatchGroups('a aa aaa', ['aaa']);
2022
});
23+
24+
test('`wordBoundary` basic cases', () => {
25+
expect(wordBoundary).toEqualRegex(/\b/);
26+
expect([wordBoundary, 'a', 'b']).toEqualRegex(/\bab/);
27+
});
28+
29+
test('`wordBoundary` regex tests', () => {
30+
expect(
31+
buildRegExp([wordBoundary, 'a', zeroOrMore(notWhitespace)], { global: true }),
32+
).toMatchGroups('a ba ab aa', ['a', 'ab', 'aa']);
33+
34+
expect(
35+
buildRegExp([zeroOrMore(notWhitespace), 'a', wordBoundary], { global: true }),
36+
).toMatchGroups('a ba ab aa', ['a', 'ba', 'aa']);
37+
});

src/constructs/anchors.ts

+12
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,18 @@ export const endOfString: Anchor = {
1818
encode: encodeAnchor,
1919
};
2020

21+
export const wordBoundary: Anchor = {
22+
type: 'anchor',
23+
symbol: '\\b',
24+
encode: encodeAnchor,
25+
};
26+
27+
export const notWordBoundary: Anchor = {
28+
type: 'anchor',
29+
symbol: '\\B',
30+
encode: encodeAnchor,
31+
};
32+
2133
function encodeAnchor(this: Anchor): EncodeResult {
2234
return {
2335
precedence: 'sequence',

0 commit comments

Comments
 (0)