Open In App
Related Articles

Node.js urlObject.search API

Improve Article
Improve
Save Article
Save
Like Article
Like

The urlObject.search() method in Node is used to get the search query within the hostname which is followed by the ‘?’ character.

Syntax : urlObject.search()
Return : Returns the search query after ‘?’ character.

Example #1 : In these examples, we have shown how the urlObject.search() method is able to extract the search query from the hostname.




// Importing the module 'url' 
const url = require('url');
    
var adr = 
  
// Parse the address:
var q = url.parse(adr, true);
  
/* The parse method returns an object containing
 URL properties */
  
console.log(q.search);

Output :

Example #2 :




// Importing the module 'url' 
const url = require('url');
    
var adr = 
  
// Parse the address:
var q = url.parse(adr, true);
  
/* The parse method returns an object containing
 URL properties */
  
console.log(q.search);

Output :

Last Updated : 14 Oct, 2021
Like Article
Save Article
Similar Reads
Related Tutorials