Community
    • Login

    Need Help For Remove a href Tag With out remove anchor Text

    Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
    2 Posts 2 Posters 778 Views 1 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.
    • S Offline
      Smart Warriors
      last edited by

      <a href=“site.com”>hello</a>

      Need Only "Hello"Text From Above HTML CODE How to do Using Regular Experssion

      1 Reply Last reply Reply Quote 0
      • guy038G Offline
        guy038
        last edited by guy038

        Hello, @smart-warriors and All,

        If we assume that the strings <a href= and </a> are, both, on one line, only, I suppose that the following regex does the job :

        • Open the Mark dialog ( Ctrl + M )

        • SEARCH (?s)<a href=.+?>\K.+?(?=</a>)

        • Possibly, check the Wrap around option

        • Select the Regular expression search mode

        • Click on the Mark All button

        • Then, click on the Copy Marked Text button

        • Open a new tab ( Ctrl + N )

        • Paste the clipboard’s contents ( Ctrl + V )


        If all your <a href=.....>........</a> definitions are contained in a single line, you may use the more restrictive regex :

        MARK (?-s)<a href=.+?>\K.+?(?=</a>)

        Best Regards,

        guy038

        1 Reply Last reply Reply Quote 0

        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