whileprintingrecords;
stringvarMyField:={table.field};
Stringvar Output;
numbervar x;
for x:= 1 to len(MyField) do(
if not(isnumeric(mid(MyField,x,1))) then
Output:=Output & mid(MyField,x,1)
);
Output
whileprintingrecords;
stringvarMyField:={table.field};
Stringvar Output;
numbervar x;
for x:= 1 to len(MyField) do(
if not(isnumeric(mid(MyField,x,1)))
and
mid(MyField,x,1) <> "."
then
Output:=Output & mid(MyField,x,1)
);
Output
whileprintingrecords;
stringvarMyField:={table.field};
Stringvar Output;
numbervar x;
for x:= 1 to len(MyField) do(
if not(isnumeric(mid(MyField,x,1)))
and
not(mid(MyField,x,1) in [".",","])
then
Output:=Output & mid(MyField,x,1)
);
trim(Output)
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.