Page 1 of 1

is it possible?

Posted: Mon Jan 31, 2005 5:32 pm
by rico
i would like to remove portion of text like this
@abr@
"abr" is the text in beetween the 2 @ but sometimes the text in beetween change and has more characters in fact i want to remove everything in beetween these two "@" including the two "@"
what expression should i use ?
i did :
@*.*@/r/n
doesn't work...
i'm kind of confused

Posted: Mon Jan 31, 2005 5:32 pm
by Abacre
Try this way:

@.*@\r\n

So .* means any char (including empty char)
and \r\n - new line.

It will work.