Extracts and parses the query parameters from a given URL. It splits the query string into key-value pairs and returns a structured dataframe.
explain_url(url)
A character string representing the URL to be parsed.
A dataframe with two columns: Key
and Value
,
containing the parsed query parameters.
explain_url("https://example.com/page?name=John&age=30&city=New%20York")