need a regex

General questions about using TextPad

Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard

Post Reply
Kevin

need a regex

Post by Kevin »

I need a regex to delete every character on a line starting at the first comma from the left (inclusive if there is one) to the end of the line.

Thanks.
Roy Beatty

Re: need a regex

Post by Roy Beatty »

Try

Find...: ^\([^,]*\),.*$<br>
Replace: \1
Post Reply