I have an .xml document.
<Record>
<tag1>1</tag1>
<tag2>...</tag2>
...
<tagN>...</tagN>
</Record>
...
<Record>
<tag1>100</tag1>
<tag2>...</tag2>
...
<tagN>...</tagN>
</Record>
All I need is to divide a data by 1000 in tags <tagN>
and then to round it with precision of 2. For example, <tagN>123456</tagN>
becomes <tagN>123.46</tagN>
.
Is there any possibility to do it in IntelliJ Idea using Replace ?