Capture parameter of a Javascript line in PHP with Regex?

iraq angel com

New Member
Hello Stackoverflow users,I was wondering what regex I would need to use to capture the following in PHP with Regex:\[code\]this.element.jPlayer("setFile", "abc123");\[/code\]How could I get the value abc123 with PHP as a variable?Thanks in advance!Added info:PHP contains a string with HTML content. This content contains a line with 'this.element.jPlayer("setFile", "abc123");' and I want only 'abc123' to be saved by PHP as a single variable.
 
Back
Top