Substitute alt tag with title tag using sed
Posted
by hardc0de
on Stack Overflow
See other posts from Stack Overflow
or by hardc0de
Published on 2010-05-08T14:13:17Z
Indexed on
2010/05/08
14:18 UTC
Read the original article
Hit count: 164
I have a PCRE regex that looks like this
s/(<input.+?)alt(=".+?".*?>)/$1title$2/
Can anybody help me with making that work on sed?
Eventually can anybody point me to some guide/blog post/whatever that explains differences between sed regex and pcre?
© Stack Overflow or respective owner