-
Pattern `\\d+|\\b[a-zA-Z']+\\b` fails to find the digits in input "testing, 1, 2 testing". The regex is correct as can be tested here https://regex101.com/r/griuTm/1.
Changing the pattern to `\\b[0…
-
I'm not sure if this has been brought up before (I searched, but nothing came up), so sorry if it's a duplicate.
I often find myself wanting to specify which variable/parameter/whatever I'm applyin…
-
Code:
```js
'use strict'
let testString = 'foo:napp2019'
const regex = /(?\w+):(?\w+)(?\d+)/ui
let res = regex.exec(testString)
console.log(res.groups.year)
console.log(res.groups.p)
c…
-
- VSCode Version: 1.14.1
- OS Version: Mac OSX Sierra 10.12.5 (16F73)
Steps to Reproduce:
1. `code --disable-extensions`
1. *File->New File*
1. Paste file from here: [snippets.py](https…
-
When TPropertyValue was written, it was PHP4/5. Things have changed. Standard PHP arrays are not "array()" but "[]".
So I propose that TPropertyValue::ensureArray be tweaked for the [newer] versi…
-
`emailRegex({exact:true}).test('') // true :(`
-
### Describe the bug
When using `adapter-netlify` and enabling the experimental Edge Functions, Netlify Identity doesn't work. The `https://example.com/.netlify/identity` path gets a 404 from Svelt…
-
# What
_idShort_ is currently very restricted defined in the specification:
>idShort of Referables shall only feature letters, digits,
underscore ("_"); starting mandatory with a letter, i.e. […
-
**Is your feature request related to a problem? Please describe.**
I would like to have a tool similar to => https://regex101.com/
It has too many features but you can start with a simple regular ex…
-
Had an issue that stemmed from Cypress testing library but debugged into Dom testing library. The issue is [this function](https://github.com/testing-library/dom-testing-library/blob/ec1b642ba6069cbe5…