https://github.com/Kyubyong/wordvectors
我需要解析多个看起来像使用谷歌应用脚本的电子邮件正文:
Name: Bob smith
Email: hellol@aol.com
Phone Number: 4243331212
我想拆分每行开头的标题。我有以下功能:
function parseBody (i, body) {
var split = body.split(new RegExp(/(\w*): ([^\t\r\n]*)[\t\r\n]*/)) //removes trailing line feed
.filter(function (x) { return x })
.....
}
但是正则表达式不起作用,只在我上测试时捕获第一个标题。我做错了什么?
编辑: