I'm using regular expression in Notepad++, trying to delete everything after a particular word.
For example here is my text:
Bull01 blah blah
Bull02 Blah blah
Bull03 Blah
Bull04 Blah
Bull05 Blah
**
Bull300 Blah blah blah
etc..
Im trying to delete everything after the word Bull
, so that my results ends up being just Bull
. I thought it was as simple as searching for
Bull.*
but that deletes the whole row, including the word Bull
.