Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Which kind of symbol is it,whose hex value is 'A0'?

Former Member
0 Kudos

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

5 REPLIES 5

andreas_mann3
Active Contributor
0 Kudos

Hi,

dezimal hex    char     description

&#60;   &#x4c; <        less-than sign
&#62;   &#x4e; >        greater-than sign
   &#xa0;          <b>non-breaking space</b>
¡  &#xa1; ¡        inverted exclamation mark

Andreas

0 Kudos

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

0 Kudos

Hi,

try to use translate-command

example:

DATA trhex(4) TYPE x VALUE 'A020'.

...

TRANSLATE xrecord USING trhex.

...

Andreas

0 Kudos

I will try it!

Thanks Andreas!

0 Kudos

try translate....