Surely if the char value for a subvalue is consistently
char(184) (and
thus nothing else becomes char(184)) then you have a number
of options
all leading to the same result...
   convert char(184) to char(252)
OR
   field (string,char(184), x)
OR
   for S = 1 to len(string)
     if string[S,1] = char(184) then
        --> go store new.str as a subval value
        new.str = ''
     end else
        new.str := string[S,1]
     end
  next S
  if new.str ne '' then go --> store last subval value
-------
u2-users mailing list
[EMAIL PROTECTED]
To unsubscribe please visit http://listserver.u2ug.org/

Reply via email to