0

I have many line with the structure:

start...ABC...

In notepad++, how to replace ABC in all the lines start by start by another string (for example DEF)

0

1 Answer 1

2

The regex would be:

Find what: ^(start.*)ABC

Replace with: $1DEF

^ - tells that regex should start at the start of the line and $1 will match whatever matched in first group, which is (start.*)

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.