Jump to content

Recommended Posts

Looking to do a inline java parse 

 

onblur="return parseUrl()"; 

 

function parseUrl()  {

 

  // val = http://test.com/test/john/1/2/3;

var val = $(this).val();

 

 i need it to return the "john/1/2/3" part 

 

 

 

any assistance would be appreciated , thanks in advance.

Edited by DrTrans
Link to comment
https://forums.phpfreaks.com/topic/304343-parsing-url-in-js/
Share on other sites

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
https://forums.phpfreaks.com/topic/304343-parsing-url-in-js/#findComment-1548433
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.