我正在绘制一个d3图,我的数据集中有一个字符串数组,它提供了一些时间戳,时间戳就像 “8:34 OFF 9:15”我希望从中提取数字。 我知道这很简单,但我似乎找到了解决方法,我是Javascript的新手。
答案 0 :(得分:1)
您可以使用正则表达式。
//It will return you an array of matched strings
"ON 8:34 OFF 9:15".match(/\d+:\d+/g);
document.write("ON 8:34 OFF 9:15".match(/\d+:\d+/g).join())