extract_all_url_parameters - BigQuery

Function

extract_all_url_parameters(url)

Description

Extract All Url Parameters - Extracts all parameters from a <url> in JSON format.

Example Query


SELECT `justfunctions.eu.extract_all_url_parameters`("justdataplease.com/test/?medium=cpc&source=google&keyword=hey&source=facebook")
                                            
/*--Output--
{"keyword":"hey","medium":"cpc","source":"facebook"}
*/

Statement

CREATE OR REPLACE FUNCTION `your_project_id.your_dataset_id.extract_all_url_parameters`(`url` STRING) RETURNS JSON
	LANGUAGE js AS r'''// Remove the fragment identifier (everything after '#')
var main_part = url.split('#')[0];

// Extract the query string part
var query_string = main_part.split('?')[1];
var params = query_string.split('&');
var obj = {};
for(var i = 0; i < params.length; i++) {
  var keyValue = params[i].split('=');
  obj[keyValue[0]] = keyValue[1];
}
return obj;
''' OPTIONS ( description = '''Extracts all parameters from a <url> in JSON format.'''  )

Regions

justfunctions.eu.extract_all_url_parameters(url),
justfunctions.us.extract_all_url_parameters(url)

Type

JavaScript User Defined Function (JavaScript UDF)

How to Use

Frequently Asked Questions

User-Defined Functions (UDFs) in Google BigQuery are custom functions that you can create to perform operations that aren't available through the standard SQL functions. These UDFs allow you to extend BigQuery's SQL capabilities to suit your specific data processing needs. JustFunctions is a collection of open-source user-defined functions (UDFs).

JustFunctions is a collection of open-source User-Defined Functions (UDFs) designed to extend the capabilities of Google BigQuery. These functions cover a wide range of applications, including text manipulation, URL processing, date processing, email handling, similarity measures, and more. Moreover, JustFunctions is frequently updated to include more use cases.

We welcome any feedback or questions you may have. You can Contact us or report an issue on Github.

Functions and procedures from JustFunctions can be used directly in any of your projects.
To start, simply click 👆 on any function,  Copy  the 'Example Query' and run it in your BigQuery console.
You can also  Copy  the 'Statement' to create your own private user-defined function.

Yes, JustFunctions is completely free to use.

Yes, currently JustFunctions is only available for Google BigQuery. In the future, we will also support PostgreSQL.

See something wrong? Contact us or report an issue on Github.