tags:

views:

11

answers:

1

Hello, i'm trying to find an regex for code cleanup.

i want to cut of all tabs withoput any character following.

\t+\n

Does not work for me:/

Eclipse returns everytime "String not found"

is the regex wrong?

greetings

+1  A: 

You want to use:

\t+$
DigitalRoss
strange, it seem it works with the strg+h search, but not with the strg+f search:/
CaptnLenz