Jump to content

parsing url in js


DrTrans

Recommended Posts

You can use string split method on val:

var val = "http://test.com/test/john/1/2/3";
 
var parts = val.split('/');

Parts now has each part of the URL in an array, with the last 4 entries being 'john', '1', '2' and '3'.

 

You could also do a string replace, if 'http://test.com/test/" is always going to be exactly that

var val = "http://test.com/test/john/1/2/3";
var params = val.replace('http://test.com/test/', '');

They're 2 very basic ways to manipulate the URL string

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.