How do I change two letters closest to a string and one letter immediately after a string using...

Can a monster with multiattack use this ability if they are missing a limb?

Generic lambda vs generic function give different behaviour

What's the purpose of "true" in bash "if sudo true; then"

What defines a dissertation?

Is there a problem with hiding "forgot password" until it's needed?

Is there a good way to store credentials outside of a password manager?

Tiptoe or tiphoof? Adjusting words to better fit fantasy races

What are the ramifications of creating a homebrew world without an Astral Plane?

Bash method for viewing beginning and end of file

What will be the benefits of Brexit?

How do I define a right arrow with bar in LaTeX?

Is it okay / does it make sense for another player to join a running game of Munchkin?

Is it correct to write "is not focus on"?

Everything Bob says is false. How does he get people to trust him?

Why are on-board computers allowed to change controls without notifying the pilots?

Do there exist finite commutative rings with identity that are not Bézout rings?

Why is delta-v is the most useful quantity for planning space travel?

Lay out the Carpet

How will losing mobility of one hand affect my career as a programmer?

What is difference between behavior and behaviour

I'm in charge of equipment buying but no one's ever happy with what I choose. How to fix this?

What's a natural way to say that someone works somewhere (for a job)?

apt-get update is failing in debian

Can somebody explain Brexit in a few child-proof sentences?



How do I change two letters closest to a string and one letter immediately after a string using Notepad++?


Delete all text before and after a certain stringNotepad++. How to replace different characters with corresponding letters at once?How can you change the zoom shortcut keys in Notepad++?remove a string of information after the 9th digit and before a string of set numbers that start with 31117Erase unknown string between two known strings in Notepad++how to delete all lines containing less than 3 letters before “ : ” in notepad++How to remove lines containing less than 3 letters in Email Before “@”domain in notepad++Notepad++ find and replace within a constant stringNotepad++ search and replace string with another string from the same lineHow to remove lines that not containing any uppercase letters or lowercase letters or numbers notepad++













9















I have a list of emails, and I want to change the two letters before "@" and the first letter after "@" using Notepad++.



For example:



username@yourdomain.com


becomes



userna**@*ourdomain.com









share|improve this question




















  • 9





    Just an obvious remark, the concrete example you gave shows how useless this pattern would be to anonymize email addresses. It’s usually better like x******@y***.com

    – eckes
    Mar 15 at 11:11











  • @eckes would that even be possible in N++?

    – WELZ
    Mar 15 at 17:13






  • 3





    @WELZ Yes but its more work, a half working sample would (.)[^@]*@([^.]).*(.[a-z]+) use 3 capture groups which you can address in the replace with string: 1***@2***3 - uses a fixed number of mask characters but this is actually good.

    – eckes
    Mar 15 at 18:17


















9















I have a list of emails, and I want to change the two letters before "@" and the first letter after "@" using Notepad++.



For example:



username@yourdomain.com


becomes



userna**@*ourdomain.com









share|improve this question




















  • 9





    Just an obvious remark, the concrete example you gave shows how useless this pattern would be to anonymize email addresses. It’s usually better like x******@y***.com

    – eckes
    Mar 15 at 11:11











  • @eckes would that even be possible in N++?

    – WELZ
    Mar 15 at 17:13






  • 3





    @WELZ Yes but its more work, a half working sample would (.)[^@]*@([^.]).*(.[a-z]+) use 3 capture groups which you can address in the replace with string: 1***@2***3 - uses a fixed number of mask characters but this is actually good.

    – eckes
    Mar 15 at 18:17
















9












9








9


2






I have a list of emails, and I want to change the two letters before "@" and the first letter after "@" using Notepad++.



For example:



username@yourdomain.com


becomes



userna**@*ourdomain.com









share|improve this question
















I have a list of emails, and I want to change the two letters before "@" and the first letter after "@" using Notepad++.



For example:



username@yourdomain.com


becomes



userna**@*ourdomain.com






notepad++






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 16 at 13:53









Peter Mortensen

8,376166185




8,376166185










asked Mar 15 at 8:02









loveman2019loveman2019

493




493








  • 9





    Just an obvious remark, the concrete example you gave shows how useless this pattern would be to anonymize email addresses. It’s usually better like x******@y***.com

    – eckes
    Mar 15 at 11:11











  • @eckes would that even be possible in N++?

    – WELZ
    Mar 15 at 17:13






  • 3





    @WELZ Yes but its more work, a half working sample would (.)[^@]*@([^.]).*(.[a-z]+) use 3 capture groups which you can address in the replace with string: 1***@2***3 - uses a fixed number of mask characters but this is actually good.

    – eckes
    Mar 15 at 18:17
















  • 9





    Just an obvious remark, the concrete example you gave shows how useless this pattern would be to anonymize email addresses. It’s usually better like x******@y***.com

    – eckes
    Mar 15 at 11:11











  • @eckes would that even be possible in N++?

    – WELZ
    Mar 15 at 17:13






  • 3





    @WELZ Yes but its more work, a half working sample would (.)[^@]*@([^.]).*(.[a-z]+) use 3 capture groups which you can address in the replace with string: 1***@2***3 - uses a fixed number of mask characters but this is actually good.

    – eckes
    Mar 15 at 18:17










9




9





Just an obvious remark, the concrete example you gave shows how useless this pattern would be to anonymize email addresses. It’s usually better like x******@y***.com

– eckes
Mar 15 at 11:11





Just an obvious remark, the concrete example you gave shows how useless this pattern would be to anonymize email addresses. It’s usually better like x******@y***.com

– eckes
Mar 15 at 11:11













@eckes would that even be possible in N++?

– WELZ
Mar 15 at 17:13





@eckes would that even be possible in N++?

– WELZ
Mar 15 at 17:13




3




3





@WELZ Yes but its more work, a half working sample would (.)[^@]*@([^.]).*(.[a-z]+) use 3 capture groups which you can address in the replace with string: 1***@2***3 - uses a fixed number of mask characters but this is actually good.

– eckes
Mar 15 at 18:17







@WELZ Yes but its more work, a half working sample would (.)[^@]*@([^.]).*(.[a-z]+) use 3 capture groups which you can address in the replace with string: 1***@2***3 - uses a fixed number of mask characters but this is actually good.

– eckes
Mar 15 at 18:17












2 Answers
2






active

oldest

votes


















31














I want to change the two letters before "@" and the first letter after "@"




  • Menu "Search" > "Replace" (or Ctrl + H)


  • Set "Find what" to ..@.


  • Set "Replace with" to **@*


  • Enable "Regular expression"



  • Click "Replace All"



    enter image description here




Before:



username@yourdomain.com


After:



userna**@*ourdomain.com




Further reading




  • How to use regular expressions in Notepad++ (tutorial)

  • Notepad++: A guide to using regular expressions and extended search mode

  • Regular Expressions Tutorial

  • RegExr: Learn, Build, & Test RegEx

  • regex101: Online regex tester and debugger

  • RegExper: Regular Expression Visualiser






share|improve this answer
























  • DavidPostill thanks,it worked for me.

    – loveman2019
    Mar 15 at 8:17






  • 7





    @loveman2019 Do you need more help? If this answered your question, please don't forget to accept the answer by clicking the accept button (the tick ✓ button).

    – DavidPostill
    Mar 15 at 8:19











  • I'd say it should be .?.@. as there might not be two characters before @.

    – n0rd
    Mar 16 at 18:55






  • 1





    @n0rd The question specified two characters, but you are correct if there is only one.

    – DavidPostill
    Mar 16 at 19:07



















9














You can do this by using a regex search/replace.



At the bottom, select Regular Expression.



In the Search for entry, you type in: ..@.
In the Replace with, you type in **@*



Then press the button Replace All



This works because Regex searches will only replace if its search criteria matches exactly. The match is explained as follows:



..@. There are 3 dots and an @:





  • @ has no special meaning in regex so it means a literal @.


  • . means any character, exactly once. By writing .. it means 2 characters of any kind, as long as there are 2 characters.






share|improve this answer

























    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "3"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1414191%2fhow-do-i-change-two-letters-closest-to-a-string-and-one-letter-immediately-after%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    31














    I want to change the two letters before "@" and the first letter after "@"




    • Menu "Search" > "Replace" (or Ctrl + H)


    • Set "Find what" to ..@.


    • Set "Replace with" to **@*


    • Enable "Regular expression"



    • Click "Replace All"



      enter image description here




    Before:



    username@yourdomain.com


    After:



    userna**@*ourdomain.com




    Further reading




    • How to use regular expressions in Notepad++ (tutorial)

    • Notepad++: A guide to using regular expressions and extended search mode

    • Regular Expressions Tutorial

    • RegExr: Learn, Build, & Test RegEx

    • regex101: Online regex tester and debugger

    • RegExper: Regular Expression Visualiser






    share|improve this answer
























    • DavidPostill thanks,it worked for me.

      – loveman2019
      Mar 15 at 8:17






    • 7





      @loveman2019 Do you need more help? If this answered your question, please don't forget to accept the answer by clicking the accept button (the tick ✓ button).

      – DavidPostill
      Mar 15 at 8:19











    • I'd say it should be .?.@. as there might not be two characters before @.

      – n0rd
      Mar 16 at 18:55






    • 1





      @n0rd The question specified two characters, but you are correct if there is only one.

      – DavidPostill
      Mar 16 at 19:07
















    31














    I want to change the two letters before "@" and the first letter after "@"




    • Menu "Search" > "Replace" (or Ctrl + H)


    • Set "Find what" to ..@.


    • Set "Replace with" to **@*


    • Enable "Regular expression"



    • Click "Replace All"



      enter image description here




    Before:



    username@yourdomain.com


    After:



    userna**@*ourdomain.com




    Further reading




    • How to use regular expressions in Notepad++ (tutorial)

    • Notepad++: A guide to using regular expressions and extended search mode

    • Regular Expressions Tutorial

    • RegExr: Learn, Build, & Test RegEx

    • regex101: Online regex tester and debugger

    • RegExper: Regular Expression Visualiser






    share|improve this answer
























    • DavidPostill thanks,it worked for me.

      – loveman2019
      Mar 15 at 8:17






    • 7





      @loveman2019 Do you need more help? If this answered your question, please don't forget to accept the answer by clicking the accept button (the tick ✓ button).

      – DavidPostill
      Mar 15 at 8:19











    • I'd say it should be .?.@. as there might not be two characters before @.

      – n0rd
      Mar 16 at 18:55






    • 1





      @n0rd The question specified two characters, but you are correct if there is only one.

      – DavidPostill
      Mar 16 at 19:07














    31












    31








    31







    I want to change the two letters before "@" and the first letter after "@"




    • Menu "Search" > "Replace" (or Ctrl + H)


    • Set "Find what" to ..@.


    • Set "Replace with" to **@*


    • Enable "Regular expression"



    • Click "Replace All"



      enter image description here




    Before:



    username@yourdomain.com


    After:



    userna**@*ourdomain.com




    Further reading




    • How to use regular expressions in Notepad++ (tutorial)

    • Notepad++: A guide to using regular expressions and extended search mode

    • Regular Expressions Tutorial

    • RegExr: Learn, Build, & Test RegEx

    • regex101: Online regex tester and debugger

    • RegExper: Regular Expression Visualiser






    share|improve this answer













    I want to change the two letters before "@" and the first letter after "@"




    • Menu "Search" > "Replace" (or Ctrl + H)


    • Set "Find what" to ..@.


    • Set "Replace with" to **@*


    • Enable "Regular expression"



    • Click "Replace All"



      enter image description here




    Before:



    username@yourdomain.com


    After:



    userna**@*ourdomain.com




    Further reading




    • How to use regular expressions in Notepad++ (tutorial)

    • Notepad++: A guide to using regular expressions and extended search mode

    • Regular Expressions Tutorial

    • RegExr: Learn, Build, & Test RegEx

    • regex101: Online regex tester and debugger

    • RegExper: Regular Expression Visualiser







    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Mar 15 at 8:10









    DavidPostillDavidPostill

    108k27235270




    108k27235270













    • DavidPostill thanks,it worked for me.

      – loveman2019
      Mar 15 at 8:17






    • 7





      @loveman2019 Do you need more help? If this answered your question, please don't forget to accept the answer by clicking the accept button (the tick ✓ button).

      – DavidPostill
      Mar 15 at 8:19











    • I'd say it should be .?.@. as there might not be two characters before @.

      – n0rd
      Mar 16 at 18:55






    • 1





      @n0rd The question specified two characters, but you are correct if there is only one.

      – DavidPostill
      Mar 16 at 19:07



















    • DavidPostill thanks,it worked for me.

      – loveman2019
      Mar 15 at 8:17






    • 7





      @loveman2019 Do you need more help? If this answered your question, please don't forget to accept the answer by clicking the accept button (the tick ✓ button).

      – DavidPostill
      Mar 15 at 8:19











    • I'd say it should be .?.@. as there might not be two characters before @.

      – n0rd
      Mar 16 at 18:55






    • 1





      @n0rd The question specified two characters, but you are correct if there is only one.

      – DavidPostill
      Mar 16 at 19:07

















    DavidPostill thanks,it worked for me.

    – loveman2019
    Mar 15 at 8:17





    DavidPostill thanks,it worked for me.

    – loveman2019
    Mar 15 at 8:17




    7




    7





    @loveman2019 Do you need more help? If this answered your question, please don't forget to accept the answer by clicking the accept button (the tick ✓ button).

    – DavidPostill
    Mar 15 at 8:19





    @loveman2019 Do you need more help? If this answered your question, please don't forget to accept the answer by clicking the accept button (the tick ✓ button).

    – DavidPostill
    Mar 15 at 8:19













    I'd say it should be .?.@. as there might not be two characters before @.

    – n0rd
    Mar 16 at 18:55





    I'd say it should be .?.@. as there might not be two characters before @.

    – n0rd
    Mar 16 at 18:55




    1




    1





    @n0rd The question specified two characters, but you are correct if there is only one.

    – DavidPostill
    Mar 16 at 19:07





    @n0rd The question specified two characters, but you are correct if there is only one.

    – DavidPostill
    Mar 16 at 19:07













    9














    You can do this by using a regex search/replace.



    At the bottom, select Regular Expression.



    In the Search for entry, you type in: ..@.
    In the Replace with, you type in **@*



    Then press the button Replace All



    This works because Regex searches will only replace if its search criteria matches exactly. The match is explained as follows:



    ..@. There are 3 dots and an @:





    • @ has no special meaning in regex so it means a literal @.


    • . means any character, exactly once. By writing .. it means 2 characters of any kind, as long as there are 2 characters.






    share|improve this answer






























      9














      You can do this by using a regex search/replace.



      At the bottom, select Regular Expression.



      In the Search for entry, you type in: ..@.
      In the Replace with, you type in **@*



      Then press the button Replace All



      This works because Regex searches will only replace if its search criteria matches exactly. The match is explained as follows:



      ..@. There are 3 dots and an @:





      • @ has no special meaning in regex so it means a literal @.


      • . means any character, exactly once. By writing .. it means 2 characters of any kind, as long as there are 2 characters.






      share|improve this answer




























        9












        9








        9







        You can do this by using a regex search/replace.



        At the bottom, select Regular Expression.



        In the Search for entry, you type in: ..@.
        In the Replace with, you type in **@*



        Then press the button Replace All



        This works because Regex searches will only replace if its search criteria matches exactly. The match is explained as follows:



        ..@. There are 3 dots and an @:





        • @ has no special meaning in regex so it means a literal @.


        • . means any character, exactly once. By writing .. it means 2 characters of any kind, as long as there are 2 characters.






        share|improve this answer















        You can do this by using a regex search/replace.



        At the bottom, select Regular Expression.



        In the Search for entry, you type in: ..@.
        In the Replace with, you type in **@*



        Then press the button Replace All



        This works because Regex searches will only replace if its search criteria matches exactly. The match is explained as follows:



        ..@. There are 3 dots and an @:





        • @ has no special meaning in regex so it means a literal @.


        • . means any character, exactly once. By writing .. it means 2 characters of any kind, as long as there are 2 characters.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Mar 15 at 10:40









        Ismael Miguel

        1871215




        1871215










        answered Mar 15 at 8:10









        LPChipLPChip

        36.6k55487




        36.6k55487






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Super User!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1414191%2fhow-do-i-change-two-letters-closest-to-a-string-and-one-letter-immediately-after%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Magento 2 - Add success message with knockout Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Success / Error message on ajax request$.widget is not a function when loading a homepage after add custom jQuery on custom themeHow can bind jQuery to current document in Magento 2 When template load by ajaxRedirect page using plugin in Magento 2Magento 2 - Update quantity and totals of cart page without page reload?Magento 2: Quote data not loaded on knockout checkoutMagento 2 : I need to change add to cart success message after adding product into cart through pluginMagento 2.2.5 How to add additional products to cart from new checkout step?Magento 2 Add error/success message with knockoutCan't validate Post Code on checkout page

            Fil:Tokke komm.svg

            Where did Arya get these scars? Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar Manara Favourite questions and answers from the 1st quarter of 2019Why did Arya refuse to end it?Has the pronunciation of Arya Stark's name changed?Has Arya forgiven people?Why did Arya Stark lose her vision?Why can Arya still use the faces?Has the Narrow Sea become narrower?Does Arya Stark know how to make poisons outside of the House of Black and White?Why did Nymeria leave Arya?Why did Arya not kill the Lannister soldiers she encountered in the Riverlands?What is the current canonical age of Sansa, Bran and Arya Stark?