📅  最后修改于: 2022-03-11 15:02:34.911000             🧑  作者: Mango
//Gets the part of the string inbetween the : and the ;
var part = str.substring(
str.lastIndexOf(":") + 1,
str.lastIndexOf(";")
);