How can i play with text which have string and int (from XML)

Hello

lets say (using c#) i have a XML file which have:

<Characters>

   <CharacterA>
      <FirstSkill>Deal 10 Damage Per 5 Seconds </FirstSkill>
   </CharacterA>

</Characters>

how can i play with the numbers in the Firstskill child?

extract the text (from the XML) then use regular expressions.

Alternately, as a general solution, you parse the XMl to a data structure and manipulate that, then write it out again.

See either

or