How to read a txt. file, copy the content into a new file and replace certain content

前端 未结 1 1187
闹比i
闹比i 2020-12-14 23:08

I have a .txt file online filled with text such as:

\"Type\": \"Internal\",
\"Category\": 1,
\"Presentation\": 3,
...

I want t

1条回答
  •  Happy的楠姐
    2020-12-14 23:39

    Apps Script uses the JavaScript programming language. For Apps Script code that runs on Google's servers, JavaScript code will be in a .gs "script" file. JavaScript was originally created for "client side" use, which means it runs in the browser that you have open on your computer (Not Google's server). In client side JavaScript, the code is put into HTML

提交回复
热议问题