Navigation X
ALERT
Click here to register with a few steps and explore all our cool stuff we have to offer!



   202

how to get username from user:pass format

by davilo1855 - 12 March, 2024 - 05:33 PM
This post is by a banned member (davilo1855) - Unhide
28
Posts
9
Threads
2 Years of service
#1
hi i want to get only the usernames from user:pass format, how i can do this with notepad++
This post is by a banned member (dbdr) - Unhide
This post is by a banned member (asseto) - Unhide
This post is by a banned member (davilo1855) - Unhide
28
Posts
9
Threads
2 Years of service
#4
(This post was last modified: 12 March, 2024 - 05:59 PM by davilo1855.)
shutup scammers there is websites online i want to know just this

i asked chatgpt how to do it with notepad++ !!!!

dont believe telgram scamers here is the answer
 You can achieve this in Notepad++ using regular expressions. Here's how you can do it:
  1. Open Notepad++.
  2. Open your file containing the list of usernames and passwords.
  3. Press
    Code:
    Ctrl + H
    to open the Replace dialog.
  4. Make sure the "Search Mode" is set to "Regular expression."
  5. In the "Find what" field, enter
    Code:
    :(.*)$
    .
  6. Leave the "Replace with" field empty.
  7. Click on "Replace All".
This regular expression
Code:
:(.*)$
captures everything after the colon
Code:
:
until the end of the line
Code:
$
, effectively removing the colon and everything after it.After following these steps, all the passwords should be removed, leaving only the usernames in the file. Make sure to save your changes afterward.

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
or
Sign in
Already have an account? Sign in here.


Forum Jump:


Users browsing this thread: 1 Guest(s)