简体   繁体   中英

Substitute alt attribute with title attribute using sed

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?

I think it's something like this:

's/\(\<input[^>]\+\?\)alt\(=[^>]\+\?>\)/\1title\2/g'

And this is a good site for understanding sed.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM