Get all URLs in a string
npm install get-urls> Get all URLs in a string
The URLs will be normalized.
Do not use this for any kind of security-related validation.
Please note the known limitation. You can work around this by setting requireSchemeOrWww to true.
``sh`
npm install get-urls
`js
import getUrls from 'get-urls';
const text = 'Lorem ipsum dolor sit amet, //sindresorhus.com consectetuer adipiscing http://yeoman.io elit.';
getUrls(text);
//=> Set {'http://sindresorhus.com', 'http://yeoman.io'}
`
Returns a Set of URLs.
Type: string
Type: object
All the normalize-url options in addition to:
#### extractFromQueryString
Type: boolean\false
Default:
Extract URLs that appear as query parameters in the found URLs.
#### exclude
Type: string[]\[]
Default:
Exclude URLs that match URLs in the given array.
#### requireSchemeOrWww
Type: boolean\false
Default:
Require URLs to have a scheme or leading www. to be considered an URL. When false, matches against a list of valid TLDs, so it will match URLs like unicorn.education.
Does not affect URLs in query parameters if using the extractFromQueryString` option.
- get-urls-cli - CLI for this module
- linkify-urls - Linkify URLs in text