S
S
Sn0wSky2016-10-13 16:22:52
PHP
Sn0wSky, 2016-10-13 16:22:52

What is the regex for alt="sometext"?

Need to remove all image alts? alt="hello world" => alt = ""
Thank you all in advance

Answer the question

In order to leave comments, you need to log in

2 answer(s)
M
Maxim, 2016-10-13
@Sn0wSky

$content = preg_replace('/alt=\"([^\"]*)\"/', '', $content);

https://regex101.com/r/BPBV4f/1

M
mletov, 2016-10-13
@mletov

alt=".+?"
You can construct regular expressions here www.pcre.ru/eval

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question