<HTML><BODY>
 <p>Hello,</p><p>I have string with ° and I want to delete all symbols to °. When I delete symbol ° returns #176. How can I delete this symbol?</p><p>Exampe: s := '49°45 ';<br></p><p>After: delete (s, 1, 2); --> '°45 '</p><p>After: delete (s, 1, 1); or delete (s, pos ('°', s), 1); --> 
#176'45 '
</p><p>I want to reseive only '45 '.</p><p>Regards,<br>Kamen<br></p><p><br></p><p><br></p></BODY></HTML>