1 2 3 4 5 | function youtube_parser(url){ var regExp = /^.*((youtu.be\/)|(v\/)|(\/u\/\w\/)|(embed\/)|(watch\?))\??v?=?([^ #&?]*).*/; var match = url.match(regExp); return (match&&match[7].length==11)? match[7] : false ; } |
웹 개발 개인 창고
1 2 3 4 5 | function youtube_parser(url){ var regExp = /^.*((youtu.be\/)|(v\/)|(\/u\/\w\/)|(embed\/)|(watch\?))\??v?=?([^ #&?]*).*/; var match = url.match(regExp); return (match&&match[7].length==11)? match[7] : false ; } |