Delete text before “=” sign in Notepad++

notepadregex

How to delete a text before "=" in notepad ++.

Example

'abc = def'
'123 = 456'

Output Should be

'def'
'456'

Best Answer

Open replace with CTRL+H. Select search mode = regular expression

Enter this line in "Find what"

[a-zA-Z0-9 ]+=[ ]*

Make sure "Replace with" is empty

Click Replace All.

Related Question