2021年12月30日 星期四
2021年12月28日 星期二
2021年12月27日 星期一
2021年12月26日 星期日
2021年12月20日 星期一
2021年12月17日 星期五
2021年12月6日 星期一
2021年12月4日 星期六
2021年11月16日 星期二
2021年11月13日 星期六
2021年11月12日 星期五
2021年11月11日 星期四
2021年11月8日 星期一
2021年11月1日 星期一
2021年10月29日 星期五
2021年10月12日 星期二
2021年9月30日 星期四
2021年9月28日 星期二
Indexing of all matches (JavaScript Google Doc App Scripts)
function indexingAllMatches() {
var doc = DocumentApp.getActiveDocument();
var body = doc.getBody();
var re = /[3012]/g; // regular expression
var str = body.getChild(0).asText().getText();
// str = "The 1author lives 2in Iowa, 1USA."
while ((match = re.exec(str)) != null) {
Logger.log("match found at " + match.index);
}
// expected return = 4,18,28
}
訂閱:
文章 (Atom)