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
}
2021年9月24日 星期五
2021年9月19日 星期日
2021年9月15日 星期三
2021年9月9日 星期四
訂閱:
文章 (Atom)