bennypowers / nvim-regexplainer

Describe the regexp under the cursor
627 stars 7 forks source link

\d\.\d\.\d #36

Open bennypowers opened 1 year ago

bennypowers commented 1 year ago
/elements@\d\.\d\.\d\/elements\/.*lightdom\.css$/;

EXPECTED:

`elements@`
**0-9**
`.`
**0-9**
`.`
**0-9**
`/elements/`
**ANY** (_>= 0x_)
`lightdom.css`
**END**

ACTUAL:

`elements@`
**d.**
**d.**
`\\d/elements/`
**ANY** (_>= 0x_)
`lightdom.css`
**END**