fork download
  1. <?php
  2.  
  3. $string = "youtube1234\r\nyoutube4567";
  4.  
  5. $string = nl2br(preg_replace('/youtube(\S*)/', '<iframe src="https://w...content-available-to-author-only...e.com/embed/$1"></iframe>', $string));
  6.  
  7. echo $string;
Success #stdin #stdout 0.03s 82624KB
stdin
Standard input is empty
stdout
<iframe src="https://w...content-available-to-author-only...e.com/embed/1234"></iframe><br />
<iframe src="https://w...content-available-to-author-only...e.com/embed/4567"></iframe>