[Lazarus] String with °
Mattias Gaertner
nc-gaertnma at netcologne.de
Thu Oct 10 10:57:04 CEST 2013
On Thu, 10 Oct 2013 11:52:24 +0300 (EEST)
Kamen Kamen <kamenlist at abv.bg> wrote:
>
> Hello,
> I have string with ° and I want to delete all symbols to °. When I delete symbol ° returns #176. How can I delete this symbol?
> Exampe: s := '49°45 ';
>
> After: delete (s, 1, 2); --> '°45 '
> After: delete (s, 1, 1); or delete (s, pos ('°', s), 1); -->
>
> #176'45 '
>
> I want to reseive only '45 '.
delete (s, pos ('°', s), length('°'));
Mattias
More information about the Lazarus
mailing list