Skip to content

Instantly share code, notes, and snippets.

@Gazer
Created May 20, 2020 23:45
Show Gist options
  • Save Gazer/ca54fec31b42bcd46b5a67335804a7a6 to your computer and use it in GitHub Desktop.
Save Gazer/ca54fec31b42bcd46b5a67335804a7a6 to your computer and use it in GitHub Desktop.
Parse Youtube URL to get YoutubeID
// Parse Youtube URL to get YoutubeID
//
void main() {
var url = "https://www.youtube.com/watch?v=xr3pKzqrv70";
var uri = Uri.parse(url);
var v = uri.queryParameters['v'];
print("v=$v");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment