RegExp找到soundcloud链接

时间:2013-12-07 16:51:01

标签: javascript regex hyperlink chat soundcloud

我正在尽我所能设计聊天,我希望它能找到soundcloud链接并将它们变成可以播放该歌曲的播放器。我知道如何为播放器使用他们的API,但我无法让我的RegExp工作。

我的代码:/https:\/\/soundcloud\.com\//gi只找到soundcloud位,但我也希望它能找到斜杠之后的所有内容,直到它到达空格。

1 个答案:

答案 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/

后的0个或更多非空格字符