@Chuny_OK said in *Help* How to change multiple unknown text string with just one?:
If I want to replace “-12.5” with “11” at every found string, it actually comes up like this:
OK, some more changes required then. The latest revision of the Find What regex is:
(?s-i)(gameMinExposure.+?<value>).+?(</value>)
So in this instance I’ve put the 2 tags (<value> and </value>) around the “other” characters (number) that we need to replace. So the .+? does not care what currently exists in this position, but whatever is there will be replaced with the new number which you have in the Replace With field.
Terry














