misza-one 10 months ago committed by GitHub
commit 8a717e4276
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -767,7 +767,7 @@ Let us extract numbers from text using a regular expression. This is not the reg
```js
let txt = 'In 2019, I ran 30 Days of Python. Now, in 2020 I am super exited to start this challenge'
let regEx = /\d+/
let regEx = /\d/g
// d with escape character means d not a normal d instead acts a digit
// + means one or more digit numbers,

Loading…
Cancel
Save