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 Expressionsbox 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.
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login