修剪关键字后的字符串或角度中的特定字符

时间:2018-03-07 01:41:43

标签: javascript string angular url trim

我有这个网址

/application-form?targetDate=2018-03-21

我想在等号

之后得到字符串

怎么做?

3 个答案:

答案 0 :(得分:1)

使用lastIndexOfsubstr字符串方法。



const url = '/application-form?targetDate=2018-03-21';

const lastEqualSignIndex = url.lastIndexOf('=');
const datePart = url.substr(lastEqualSignIndex + 1);

console.log(datePart); // -> '2018-03-21'




已修改多个查询参数支持

使用match字符串方法:



const [, targetDateValue] = '/application-form?targetDate=2018-03-21'.match(/[\?&]targetDate=([^&#]*)/);

console.log(targetDateValue); // -> '2018-03-21'




答案 1 :(得分:0)

您可以使用URLSearchParams。它是查询字符串的解析器。

以下是它的使用方法:

new URLSearchParams('?targetDate=2018-03-21').get('targetDate') 

// or if you want to use your URL as-is:
new URLSearchParams('/application-form?targetDate=2018-03-21'.split('?')[1]).get('targetDate')

请注意,IE不支持此功能。对于跨浏览器的变体,您可以查看此answer

答案 2 :(得分:0)

使用split和array

var param = "/application-form?targetDate=2018-03-21";
var items = param.split("=");
var arr1 = items[0];
var arr2 = items[1];
var result = arr2;