1
1
import assert from 'node:assert'
2
- import { createRegExp , exactly , digit , oneOrMore , char , wordChar } from 'magic-regexp'
2
+ import { createRegExp , exactly , maybe , digit , oneOrMore , char , wordChar } from 'magic-regexp'
3
+ /**
4
+ * change to
5
+ * import {...} from 'magic-regexp/type-level-regexp'
6
+ * to try type level RegExp match results (experimental)
7
+ */
3
8
4
9
// Typed capture groups
5
10
const ID_RE = createRegExp ( exactly ( 'id-' ) . and ( digit . times ( 5 ) . groupedAs ( 'id' ) ) )
@@ -8,22 +13,18 @@ console.log(ID_RE, groups?.id)
8
13
9
14
// Quick-and-dirty semver
10
15
const SEMVER_RE = createRegExp (
11
- oneOrMore ( digit )
12
- . groupedAs ( 'major' )
13
- . and ( '.' )
14
- . and ( oneOrMore ( digit ) . groupedAs ( 'minor' ) )
15
- . and ( exactly ( '.' ) . and ( oneOrMore ( char ) . groupedAs ( 'patch' ) ) . optionally ( ) )
16
+ oneOrMore ( digit ) . groupedAs ( 'major' ) ,
17
+ '.' ,
18
+ oneOrMore ( digit ) . groupedAs ( 'minor' ) ,
19
+ maybe ( '.' , oneOrMore ( char ) . groupedAs ( 'patch' ) )
16
20
)
17
21
console . log ( SEMVER_RE )
18
22
19
23
assert . equal ( createRegExp ( exactly ( 'foo/test.js' ) . after ( 'bar/' ) ) . test ( 'bar/foo/test.js' ) , true )
20
24
21
25
// References to previously captured groups using the group name
22
26
const TENET_RE = createRegExp (
23
- wordChar
24
- . groupedAs ( 'firstChar' )
25
- . and ( wordChar . groupedAs ( 'secondChar' ) )
26
- . and ( oneOrMore ( char ) )
27
+ exactly ( wordChar . groupedAs ( 'firstChar' ) , wordChar . groupedAs ( 'secondChar' ) , oneOrMore ( char ) )
27
28
. and . referenceTo ( 'secondChar' )
28
29
. and . referenceTo ( 'firstChar' )
29
30
)
0 commit comments