📌  相关文章
📜  javascript 获取两个字符之间的字符串 - Javascript 代码示例

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

代码示例2
//Gets the part of the string inbetween the : and the ;
var part = str.substring(
    str.lastIndexOf(":") + 1, 
    str.lastIndexOf(";")
);