Filter Urls
Finds and removes web links from a piece of text. Use it to detect or strip URLs from a message.
What it does
- Scans the input text for web links.
- Returns whether any links were found.
- Returns a cleaned version of the text with the links removed, alongside the original.
Inputs
| Name | Type | Description |
|---|---|---|
| Text | String | input text |
Outputs
| Name | Type | Description |
|---|---|---|
| Success | Boolean | Successfully ran the filter |
| Found? | Boolean | Whether any web link was found |
| Clean Text | String | Text with web links removed |
| Original Text | String | Input text |
Notes
- Recognises standard http and https web links.