Community
    • Login

    can i ask for help

    Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
    3 Posts 3 Posters 398 Views 2 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • LupusL Offline
      Lupus
      last edited by

      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

      Mark OlsonM PeterJonesP 2 Replies Last reply Reply Quote 1
      • Mark OlsonM Offline
        Mark Olson @Lupus
        last edited by

        @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 the Regular 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.

        1 Reply Last reply Reply Quote 3
        • PeterJonesP Offline
          PeterJones @Lupus
          last edited by PeterJones

          @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.

          1 Reply Last reply Reply Quote 3

          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
          • First post
            Last post
          The Community of users of the Notepad++ text editor.
          Powered by NodeBB | Contributors