我正在尽我所能设计聊天,我希望它能找到soundcloud链接并将它们变成可以播放该歌曲的播放器。我知道如何为播放器使用他们的API,但我无法让我的RegExp工作。
我的代码:/https:\/\/soundcloud\.com\//gi
只找到soundcloud位,但我也希望它能找到斜杠之后的所有内容,直到它到达空格。
答案 0 :(得分:1)
but I also want it to find everything that comes after the slash until it hits whitespace.
你可以使用:
/https?:\/\/soundcloud\.com\/\S*/gi
\S*
将匹配https://soundcloud.com/
段