Yeah, test LB's theory.
You may not be demonstrating the field properly.
Another check would be to use:
whileprintingrecords;
numbervar fldlen:= len(trim({table.field}));+1
Stringvar Output:="";
for x:= 1 to len({table.field} do(
if isnumeric(mid({table.field},fldlen-x,1))
or
mid({table.field},fldlen-x,1)) = "/" then
Output := Output+mid({table.field},fldlen-x,1))
);
Output
This assumes that there are no other numerics or slashes (/) in the field. If there are, then you'll need to stop the output fill in an else clause.
-k