-1

I have a lot of text like this in Notepad:

enter image description here

and I want them to have like this:

enter image description here

I mean from all the document I only need to extract this thing...

BTW I AM NEW USER OF NOTEPAD++

mohiz
  • 1

1 Answers1

0

Two steps:

  1. Delete all lines without text Credentials
    Find: ^(?!Credentials - ).*\r\n
    Replace: with nothing
    Regular Expressions: checked
  2. Delete leading text "Credentials - "
    Find: ^Credentials -
    Replace: with nothing
    Regular Expressions: checked
LotPings
  • 7,391