Skip to content

Instantly share code, notes, and snippets.

@diendv96
Created July 11, 2022 10:29
Show Gist options
  • Save diendv96/90c6c2bc092d7d1911beef2dc267163d to your computer and use it in GitHub Desktop.
Save diendv96/90c6c2bc092d7d1911beef2dc267163d to your computer and use it in GitHub Desktop.
Find spreadsheetId from Google Sheet URL (https://go.dev/play/p/aMfoBAQU7cC)

Spreadsheet The primary object in Google Sheets that can contain multiple sheets, each with structured information contained in cells. A Spreadsheet resource represents every spreadsheet and has a unique spreadsheetId value, containing letters, numbers, hyphens, or underscores. You can find the spreadsheet ID in a Google Sheets URL:

https://docs.google.com/spreadsheets/d/spreadsheetId/edit#gid=0

// You can edit this code!
// Click here and start typing.
// Go Playground
// https://go.dev/play/p/aMfoBAQU7cC
package main
import (
"fmt"
"regexp"
)
func main() {
fmt.Println("Hello, 世界")
url := "https://docs.google.com/spreadsheets/d/1utmrKTMtNP7fJfWsEPtjymKJCOwcZYh3L3ItxBECMno/edit#gid=1688759439"
fmt.Println("spreadsheetId: ", getSpreadSheetIdFromUrl(url))
}
func getSpreadSheetIdFromUrl(spreadSheetUrl string) string {
var re = regexp.MustCompile(`(?m)spreadsheets\/d\/(?P<spreadsheetId>.+?)\/edit`)
spreadsheetIdGroupIndex := re.SubexpIndex("spreadsheetId")
matchs := re.FindStringSubmatch(spreadSheetUrl)
if len(matchs) > spreadsheetIdGroupIndex {
return matchs[spreadsheetIdGroupIndex]
}
return ""
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment