preg_match() Unknown modifier '[' help
Asked Answered
I

2

1

I have this regex for getting the YouTube video ID:

(?<=v=)[a-zA-Z0-9-]+(?=&)|(?<=[0-9]/)[^&\n]+|(?<=v=)[^&\n]+

I get it from there: Regex to parse youtube yid

The problem is I get preg_match() Unknown modifier '[' warning.

I know I have to enclose the regex delimiters but I have no idea how to do this.

Any help?

Insolate answered 10/6, 2010 at 3:8 Comment(2)
Add the forward slash delimiter within your regexLynnette
Did you delimit the regex in your code? i.e. /expression/Multiplier
E
7

Try the following:

<?php
  $str = "http://www.youtube.com/ytscreeningroom?v=NRHVzbJVx8I";
  $pattern = '#(?<=v=)[a-zA-Z0-9-]+(?=&)|(?<=[0-9]/)[^&\n]+|(?<=v=)[^&\n]+#';
  preg_match($pattern, $str, $matches); 
  print_r($matches);
?>

Note, I'm using # as a delimiter here simply because the regular expression above contains forward slashes and escaping them makes the expression more difficult to read. This cleans it up by just a few pixels.

Echoechoic answered 10/6, 2010 at 3:16 Comment(1)
No you do not, I modified the code to reflect what you're looking for.Echoechoic
P
0

If you don't like delimiters: use T-Regx library, which works exactly like preg_match() but doesn't need delimiters.

$str = "http://www.youtube.com/ytscreeningroom?v=NRHVzbJVx8I";
$pattern = '(?<=v=)[a-zA-Z0-9-]+(?=&)|(?<=[0-9]/)[^&\n]+|(?<=v=)[^&\n]+';

//         ^ no delimiters :)                                          ^

and just use this

$match = pattern($pattern)->match($str)->first();

this results in

string(11) "NRHVzbJVx8I"
Printmaker answered 24/1, 2019 at 15:57 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.