can i ask for help
-
so in a file i have line
<Space_Tactical_Unit_Cap>25</Space_Tactical_Unit_Cap>
and i have many same lines witch difrent numbers i remember there wos option to write something like
<Space_Tactical_Unit_Cap>.*</Space_Tactical_Unit_Cap> to find the line no matter the number but i do not remember what exactgly i need to write in betwen this lines to manager find it please help -
@Lupus
Assuming there is only a number (no whitespace) between the tags, the correct regex is
(?-i)<Space_Tactical_Unit_Cap>\d+</Space_Tactical_Unit_Cap>
and theRegular Expressions
box in the find/replace dialog must be checked.The
(?-i)
at the beginning makes the regular expression case-sensitive, which is good practice when working with XML tags. -
@Lupus ,
If you are in SEARCH MODE = Regular Expression, then the syntax you showed would probably have worked in certain cases. Or use
.*?
in the middle to make it less greedy. Or use\d+
in the middle to only allow integers (as @Mark-Olson said as I was typing).But you were basically there.