DrTrans Posted July 16, 2017 Share Posted July 16, 2017 (edited) 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 July 16, 2017 by DrTrans Quote Link to comment https://forums.phpfreaks.com/topic/304343-parsing-url-in-js/ Share on other sites More sharing options...
denno020 Posted July 16, 2017 Share Posted July 16, 2017 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 Quote Link to comment https://forums.phpfreaks.com/topic/304343-parsing-url-in-js/#findComment-1548433 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.