如何使用javascript删除数组String substring()方法?

时间:2018-03-01 12:28:32

标签: javascript jquery html ajax

我想知道如何使用JavaScript删除字符串中的第一个单词?

例如,字符串是“mod1”

我想删除mod ..我需要显示1

var $checked = $('.dd-list').find('.ModuleUserViews:checked');
                var modulesIDS = [];
                $checked.each(function (index) { modulesIDS.push($(this).attr("id")); })

SEE

4 个答案:

答案 0 :(得分:1)

您可以使用substring方法。以下将给出字符串的最后一个字符。



var id = "mod1"
var result = id.substring(id.length - 1, id.length);
console.log(result)




答案 1 :(得分:0)

试试这个。

def f2min(x, data, target, offset):
    A = data
    S = np.eye(A.shape[0])
    #S = gaussian_sketch(nrows=A.shape[0]//2, ncols=A.shape[0] )
    y = target
    xt = np.ravel(offset)


    norm_val = (1/2*S.shape[0])*norm(S@A@(x-xt))**2
    #inner_prod = (y - A@xt).T@A@x

    return norm_val - inner_prod

答案 2 :(得分:0)

如果要删除所有字母并仅保留字符串中的数字,可以使用正则表达式匹配。

var str = "mod125lol";
var nums = str.match(/\d/g).join('');
console.log(nums);
// "125"

答案 3 :(得分:0)

如果你不想分割字符串(更快,更少的内存消耗),你可以使用indexOf()和substr():



 var id = "mod1"
 var result = id.substr(id.indexOf(" ") -0);
 console.log(result)