So I currently have this php code
preg_match('/^([^.!?]*[\.!?]+){0,**3**}/', $text, $abstract);
Instead of the number 3 I would like it to be a variable example >
preg_match('/^([^.!?]*[\.!?]+){0,**$variable**}/', $text, $abstract);
Please help thanks a lot :)
Use double quotes instead of single quotes, and the variable will be substituted: