私はExcelからコピーされたGoogleスプレッドシートを持っています。それに問題があります。 これは、これは私のコードGoogle Apps ScriptでGoogleスプレッドシートのセルからURLを取得するにはどうすればよいですか?
function myFunction() {
cel = SpreadsheetApp.getActiveSpreadsheet().getActiveCell()
Logger.log(cel.getFormula())
Logger.log(cel.getValue())
}
であり、これは私のログである私の文書https://docs.google.com/spreadsheets/d/1Ok_phu5OXtvKHLj3MLa7N3WV2qBdMWRz8dLHnTqjHrc/edit?usp=sharing
です:どのように
[16-10-05 13:39:59:628 EEST]
[16-10-05 13:39:59:629 EEST] RU: VTB Arena - Park and Hotel
そして私はURL(https://na3.salesforce.com/0065000000a1b8p)を取得する必要がありますそれをしてもいいですか?
関連:http://stackoverflow.com/questions/13847007/how-can-i-retrieve-the-hyperlink-from-a-data-cell-in-google-apps-script –