Hi,
I am trying to create BB Code for embedding SoundCloud audio streaming.
Example:
<iframe width="100%" height="166" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/176533020&color=ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false"></iframe>
https://w.soundcloud.com...oud.com/tracks/176533020 from the frame src to embed the track in a post.
I can get the RegEx to recognize it as soundcloud with the search RexEx:
\[SOUNDCLOUD\]https://w.soundcloud.com/player/\?url=https%3A//api.soundcloud.com/tracks/(?
<id>.*?)\[/SOUNDCLOUD\]
I
cannot, however, get the id into the replacement RegEx using the replace variable "id":
<iframe width="100%" height="166" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/
{id}&color=ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false"></iframe>
Edited by user
2014-12-05T20:50:43Z
|
Reason: Not specified