我有一个 JavaScript 字符串sentrptg2c#appqueue#sentrptg2c#vwemployees#
我想获取字符串的最后一部分:vwemployees
通过 RegExp 或任何 JavaScript 函数。
并且还想从字符串中删除最后一个关键字,以便下次字符串是这样的sentrptg2c#appqueue#sentrptg2c#
我努力了
var str = "sentrptg2c#appqueue#sentrptg2c#vwemployees#";
var array = url.split('/');
var lastsegment = array[array.length-1];
并获取vwemployees
最后一段,但字符串保持不变
sentrptg2c#appqueue#sentrptg2c#vwemployees#
应该是sentrptg2c#appqueue#sentrptg2c#
在上面的代码运行时。
请建议一种在 JavaScript 中执行此操作的方法