i have problem i'm using Notepad++ and i wat to change commas to dot in specific line.
exemple :
<KEYFRAME TIME="10" >
<WEIGHT>0,4774</WEIGHT>
</KEYFRAME>
</TRACK>
<TRACK NUMKEYFRAMES="301" MORPHNAME="blink,Right,Upper,Clamped">
<KEYFRAME TIME="0" >
<WEIGHT>0,396841</WEIGHT>
</KEYFRAME>
<KEYFRAME TIME="0,0333333" >
<WEIGHT>0,396841</WEIGHT>
</KEYFRAME>
This is exemple of the code i have on my files ( it is in XML readable ). What i want to do is at every line that have MORPHNAME= I want to change commas to dot
line will become
<TRACK NUMKEYFRAMES="301" MORPHNAME="blink.Right.Upper.Clamped">
but only on these line. i Look so many site / questioni have can found and no one talked about that. the best have found is how remove after specific charactère and not found how to found something on line that are regular expression to change.

