I currently have bbcode like this
image.jpg
I’d like to use php’s preg_match so I can get the value of the image.jpg, regardless of what’s next to ‘caption=’. Can someone help me out?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Raw regex:
image.jpg would be in the first group.
$matches[1](I’m not certain I escaped it correctly in php).