我有以下字符串:
<Openings>
<opening><item><x>3</x><y>3</y><width>10.5</width><height>13.5</height><type>rectangle</type><clipX>0</clipX><clipY>0</clipY><imgsrc></imgsrc></item></opening>
<opening><item><x>3</x><y>3</y><width>10.5</width><height>13.5</height><type>rectangle</type><clipX>0</clipX><clipY>0</clipY><imgsrc></imgsrc></item></opening>
</Openings>
基于以下值,例如1,我想替换第二组<imgsrc></imgsrc>
(它基于0,所以第一组是索引0,等等。)
所以我想要的以下输出是变量opening = 1
是:
<Openings>
<opening><item><x>3</x><y>3</y><width>10.5</width><height>13.5</height><type>rectangle</type><clipX>0</clipX><clipY>0</clipY><imgsrc></imgsrc></item></opening>
<opening><item><x>3</x><y>3</y><width>10.5</width><height>13.5</height><type>rectangle</type><clipX>0</clipX><clipY>0</clipY><imgsrc>myimage</imgsrc></item></opening>
</Openings>
答案 0 :(得分:1)