Take an url with specific text in it

Hi @Povilas_Jonikas,

You can use .Contains to see whether it contains specific strings:

URL.Contains("this string") Or URL.Contains("that string")

Or you can use Regex to match patterns of words:

1 Like