コピーしたURLをヘッダーとURLに分ける
tell application "Finder"
set strResponse to the clipboard as text
end tell
set AppleScript's text item delimiters to "'"
set listResponse to every text item of strResponse as list
set AppleScript's text item delimiters to ""
set strURL to (item 2 of listResponse) as text
-->>URL部分
set AppleScript's text item delimiters to "\\\r"
set listResponse to every text item of strResponse as list
set AppleScript's text item delimiters to ""
set strHeader to (items 2 thru (last item) of listResponse) as text
-->ヘッダー部分
| 固定リンク
「YouTube」カテゴリの記事
- [DaVinci Resolve]DaVinci Resolveから書き出したVTTにLineポジションを付与する(2024.07.14)
- [Youtube API]チャンネルIDからチャンネルのアップロードビデオを取得する(2024.03.15)
- [YoutubeAPI] チャンネルIDからチャンネルのアップロードビデオのリストIDを取得する(2024.03.14)
- [YoutubeAPI] チャンネルIDからカスタムURL=ユーザー名(アカウント名)を取得(2024.03.14)
- [Youtube]ビデオIDから主要な情報を取得(2024.01.13)