Copy of Snippet "ExtractRegex"

An experiment in using extractregex to extract data from a Google Document

{formtext: name=URL; default=https://docs.google.com/document/d/1QM2G4xdBngfOh_4iGfKd65iUarNpegOLVEe6ybSZ1OM/edit}

{urlload:{=URL}; done=(res) -> [
"date"=extractregex(res, "Date: (\w+)"),
"time1"=extractregex(res, "Time: ([\w ]+)"),
"time2"=extractregex(res, "Time: ([\s\S].+) END")
]}

Form result after loading:

Date: {=date}
Time: {=time1}
Time: {=time2}