admin管理员组文章数量:1347379
Google Docs supports variables. When a variable is a used in a document, then its value will be inlined where the variable appears.
Is it possible to define transformations on variables, to be applied at use site of the variable? Can we define dependent variables whose values are derived from that of other variables?
For instance, imagine that I have a variable named foo
, and that somewhere in the body of my document, I need to print the value of the variable foo
in reverse? Is that something that Google Docs supports?
Google Docs supports variables. When a variable is a used in a document, then its value will be inlined where the variable appears.
Is it possible to define transformations on variables, to be applied at use site of the variable? Can we define dependent variables whose values are derived from that of other variables?
For instance, imagine that I have a variable named foo
, and that somewhere in the body of my document, I need to print the value of the variable foo
in reverse? Is that something that Google Docs supports?
1 Answer
Reset to default 0To make things work we need to use the method replaceText()
to replace a text in the document body then using the reverse()
method to reverse the text.
Sample Script:
function myFunction() {
const docs = DocumentApp.getActiveDocument();
const body = docs.getBody();
// store your variable names with value here
const [varOne, varTwo, varThree] = ["foo", "bar", "sample"]
// reverse the string by converting the it into array by using split and convert it back to string by using join method
const reverseText = (string) => {return string.split("").reverse().join("")}
// using replaceText to replace a text in the body
body.replaceText("{variableOne}", reverseText(varOne));
body.replaceText("{variableTwo}", reverseText(varTwo));
body.replaceText("{variableThree}", reverseText(varThree));
}
Output:
Note: Image is for visibility only.
Sample Input:
Sample Output:
Reference:
- replaceText
- Reverse a String in JavaScript
本文标签: templatesDo Google Docs variables support transformationsStack Overflow
版权声明:本文标题:templates - Do Google Docs variables support transformations? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743835272a2547280.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
replaceText
andreverse
method. – Lime Husky Commented 2 days ago