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

NameTypeDescription
TextStringinput text

Outputs

NameTypeDescription
SuccessBooleanSuccessfully ran the filter
Found?BooleanWhether any web link was found
Clean TextStringText with web links removed
Original TextStringInput text

Notes

  • Recognises standard http and https web links.