function searchAndColorInRed() {
var doc = DocumentApp.getActiveDocument();
var textToHighlight = new RegExp('\(\d{0,4}\)');
var highlightStyle = {};
highlightStyle[DocumentApp.Attribute.FOREGROUND_COLOR] = '#FF0000';
var paras = doc.getParagraphs();
var textLocation = {};
var i;
for (i=0; i<paras.length; ++i) {
textLocation = paras[i].findText(textToHighlight);
if (textLocation != null && textLocation.getStartOffset() != -1) {
textLocation.getElement().setAttributes(textLocation.getStartOffset(),textLocation.getEndOffsetInclusive(), highlightStyle);
}
}
};
(6406) のような括弧内の数字を検索するこの関数を取得しましたが、色付けは機能しません..理由がわかりません。誰か助けてください。