Parser doesn't clear URL first, so if you parse over a non-clear URL, the resulting URL may contain some of the previous data. */
| 783 | |
| 784 | */ |
| 785 | inline ParseResult |
| 786 | URL::parse_regex(std::string_view url) |
| 787 | { |
| 788 | ink_assert(valid()); |
| 789 | const char *str = url.data(); |
| 790 | return url_parse_regex(m_heap, m_url_impl, &str, str + url.length(), COPY_STRINGS); |
| 791 | } |
| 792 | |
| 793 | /** |
| 794 | Parser doesn't clear URL first, so if you parse over a non-clear URL, |