1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
pattern = "https?://[^\\s]+" test_string = "" replacement = "" engine = "rust" case_insensitive = false multiline = false dotall = false unicode = false extended = false show_whitespace = false [[tests]] input = "visit https://example.com today" should_match = true [[tests]] input = "no url here" should_match = false [[tests]] input = "ftp://files.example.com" should_match = false