#9355
Yutaka Emura
Keymaster

Hello spiros,

If you want to find the first and second word at a line, you can use the following regular expression:

Find:

^(w+?)s+?(w+)

1 and 2 represents the first and second word respectively. For instance, you can replace with capital letters:

Replace with:

U1 2

Thanks!