mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
452 B
16 lines
452 B
4 years ago
|
## greedy-url
|
||
|
|
||
|
### Instruction
|
||
|
|
||
|
Write 3 functions :
|
||
|
|
||
|
- `getURL` that returns an array with all valid URLs present in a data-set, http and https
|
||
|
- `greedyQuery` that returns at least 3 or more parameters from all URLs that contain a query.
|
||
|
- `notSoGreedy` that returns at least 2, but not more then 3 parameters from all URLs that contain a query.
|
||
|
|
||
|
You can search for greedy quantifiers for help
|
||
|
|
||
|
|
||
|
### Notions
|
||
|
|
||
|
- https://github.com/ziishaned/learn-regex
|