2006 May 22 8:06 AM
Hi guys,
which symbol is it,whose hex value is 'A0'?How can I catch it via string.
Thanks in advance!
Regards,
Liying
Message was edited by: Liying Wang
2006 May 22 9:16 AM
Hi,
dezimal hex char description
< L < less-than sign
> N > greater-than sign
  <b>non-breaking space</b>
¡ ¡ ¡ inverted exclamation mark
Andreas
2006 May 22 9:31 AM
Thanks andreas.
But is it anyway to check if the string I got contains the non-breaking space and how can I get rid of this non-breaking space from my string?
Regards,
Liying
2006 May 22 9:56 AM
Hi,
try to use translate-command
example:
DATA trhex(4) TYPE x VALUE 'A020'.
...
TRANSLATE xrecord USING trhex.
...
Andreas
2006 May 22 10:07 AM
2006 May 22 1:42 PM