@darkfang1989 said in replacing all in line with veried numbers1:
<csv xpath=“/entitygroups/entitygroup[@name=‘sleeperHordeStageGS332’]/text()” delim=“\n” op=“add” >
zombieFatHawaiianElite, .24
zombieFemaleFatElite, .24
zombieHazmatElite, .39
zombieLumberjackElite, .39
zombieSoldierElite, .39
zombieLabElite, .58
zombieSpiderElite, .58this is one of the blocks, all blocks having different numbers. i would like to know if there’s a way to change the “zombieSpiderElite, .58” number in each block despite the number being different in each one.
You can use regular expression replacement to do that. From the main menu, select Search | Replace…, then enter:
Find what: (?<=zombieSpiderElite,)\s*[.\d]+
Replace with: .00 (note: there is a space before the period, but you can’t see it here)
Wrap around: checked
Search Mode: Regular expression
and click the Replace All button.