How can I get the next or previous character of findText()

戏子无情 提交于 2019-12-02 13:21:05

Flow:

  • getBody() returns a body object. You need string type. getText() returns string.
  • Use regexp#exec to get previous and next character of the search string

Snippet:

function myFunction() {
  var doc = DocumentApp.getActiveDocument();
  var str = doc.getBody().getText();//modified
  var search = "f";
  var regx = new RegExp("(.)"+search+"(.)")
  var y = regx.exec(str);
  Logger.log(y);
  if (y !== null){ Logger.log("Previous character" + y[1]).log("Next character:" + y[2])}
}

To practice:

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!