i have the following script:
while findfirst "file1"
fopen 0 $filename read
fgets 0 aline
substr svalue 0 3
if strfind svalue "xxx"
(do this process)
else if strfind svalue "ZZZ"
(do this process)
endif
I need to also have one more substr svalue 112 5 to get a block of text on the same line a svalue.
any help. thanks
while findfirst "file1"
fopen 0 $filename read
fgets 0 aline
substr svalue 0 3
if strfind svalue "xxx"
(do this process)
else if strfind svalue "ZZZ"
(do this process)
endif
I need to also have one more substr svalue 112 5 to get a block of text on the same line a svalue.
any help. thanks