我有一个字符串var x = 2019-02-14T21:06:06.400Z
另一个字符串y = 2019-02-14T21:06:06.44500Z
我无法删除点后需要删除内容,因为点可能在4或5或6或n个字符之后
答案 0 :(得分:0)
使用split
:
let [beforeDot] = "2019-02-14T21:06:06.400Z".split(".");
console.log(beforeDot);
答案 1 :(得分:0)
您可以将.split()
与按索引访问数组结合使用。
示例:
"2019-02-14T21:06:06.44500Z".split('.')[0]
答案 2 :(得分:0)
一个简单的解决方案。
const strIn = "2019-02-14T21:06:06.44500Z";
const index = strIn.indexOf(".");
const strOut = strIn.substr(0, index);
console.log(strOut);