📌  相关文章
📜  字符后的 javascript 子字符串 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:43.651000             🧑  作者: Mango

代码示例6
// function you can use:
function getSecondPart(str) {
    return str.split('-')[1];
}
// use the function:
alert(getSecondPart("sometext-20202"));