How do I get the Video Id from the URL? (DailyMotion)

前端 未结 5 1857
北恋
北恋 2020-12-30 14:10

Example:

http://www.dailymotion.com/video/x4xvnz_the-funny-crash-compilation_fun

How do I get x4xvnz?

5条回答
  •  既然无缘
    2020-12-30 14:57

    /video\/([^_]+)/
    

    should do the trick. This grabs in the first capture all text after video/ up till the first _.

提交回复
热议问题