Perl add around words within an HTML/XML tag

后端 未结 3 1666
一个人的身影
一个人的身影 2020-12-21 20:00

I have a file formatted like this one:

Eye color

Eye color, color

blue, cornflower blue, steely blue

3条回答
  •  南方客
    南方客 (楼主)
    2020-12-21 20:54

    One-liner:

    cat text | perl -pE 's{

    \K.*?(?=<\/p>)}{ join ", ", map {qq|$_|} split /, */, $& }eg'

提交回复
热议问题