Simon Lenz
Simon Lenz

Reputation: 2812

Regex eclipse search/replace

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

Upvotes: 0

Views: 271

Answers (1)

DigitalRoss
DigitalRoss

Reputation: 146053

You want to use:

\t+$

Upvotes: 1

Related Questions