我无法想出一个正则表达式语句,该语句从一个看起来像
的字符串中抓取所有单词和标点符号<p>hello my name is foo.</p><p>I like to go to the bar.</p>
我想要的结果是......
&#39;你好&#39; &#39;我&#39; &#39;名称&#39; &#39;是&#39; &#39;富&#39。 ..等
需要排除段落标记和空格。正则表达式将进入git diff --word-diff-regex =&#39;在此插入正则表达式&#39;它使用bash
由于
修改
git使用POSIX作为它的正则表达式。看看周围没有支持
答案 0 :(得分:1)
你可以使用这样的正则表达式:
function Timestamp() {
var sheet = SpreadsheetApp.getActiveSpreadsheet();
var cell = sheet.getActiveCell();
var comments = cell.getComment();
var formattedDate = Utilities.formatDate(new Date(), "GMT-7", "M/dd/yy', 'h:mm a ");
Newline works in msgBox, but not in Note.
comments = comments + "Mod: " + formattedDate;
Browser.msgBox(comments);
cell.setComment(comments);
}
<强> Working demo 强>