On Thu, 10 Oct 2013 11:52:24 +0300 (EEST)
Kamen Kamen <[email protected]> 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

--
_______________________________________________
Lazarus mailing list
[email protected]
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Reply via email to