Hi All,
I am hiving a file having data:
<name>InDia</name>
I want to change like:
<ST_Name>InDi a</ST_Name>
I am able to change the 1st tag but not able to change the end tag as my expectaion.
i am using this script:
$string =~ s/(\w+)/ST_\u$1/;
Can any body help for the above issue.
Thanks,
dks
I am hiving a file having data:
<name>InDia</name>
I want to change like:
<ST_Name>InDi a</ST_Name>
I am able to change the 1st tag but not able to change the end tag as my expectaion.
i am using this script:
$string =~ s/(\w+)/ST_\u$1/;
Can any body help for the above issue.
Thanks,
dks
Comment