Manage Docs Versions and History comparing How to be more productive with Google Workspace Docs
Manage Docs Versions and History comparing How to be more productive with Google Workspace Docs
Apps Script Lesson Select Emails using Regex on Doc Body text apply style for highlighting selection
Highlight emails in a Doc using Regex on Doc Body Contents Select all matching results from a Regex for email patterns. Creates an array of the emails contained in the doc, then applies styling to the email. Highlight the matching results with a yellow background and black text. function onOpen(){ DocumentApp.getUi() .createMenu(’emails’) .addItem(‘Highlight’,’highlighter’) .addToUi() } … Read more
How to Copy All Images from Doc into your Google Drive apps script blob file creator
Copy All Images from Doc into your Google Drive Example will extract all the images from a Google Doc and make copies of them directly into your Google Drive. function onOpen(){ DocumentApp.getUi() .createMenu(‘images’) .addItem(‘creator’,’getImgs’) .addToUi() } function getImgs(){ const doc = DocumentApp.getActiveDocument(); const body = doc.getBody(); const images = body.getImages(); const id = ‘1mW6Yh2X4wU8A-vQs1Z2RRVHIfHD_SI3u’; const … Read more