it would filter out line 2 from the following:aa,bb,cc
dd,ee,ff
gg,hh,jj
Code: Select all
on mouseUp
get fld 1
filter lines of it without "ee"
end mouseUp Craig
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
it would filter out line 2 from the following:aa,bb,cc
dd,ee,ff
gg,hh,jj
Code: Select all
on mouseUp
get fld 1
filter lines of it without "ee"
end mouseUp 

Code: Select all
on mouseUp
put empty into fld "f2"
put 1 into LYNE
repeat until line LYNE of fld "f1" is empty
if line LYNE of fld "f1" contains "ee" then
-- do nothing
else
put line LYNE of fld "f1" & cr after fld "f2"
end if
add 1 to LYNE
end repeat
end mouseUp