RosettaCodeData/Task/String-length/Forth/string-length-3.fth

10 lines
112 B
Forth
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
2 base !
: utf8+ ( str -- str )
begin
char+
dup c@
11000000 and
10000000 <>
until ;
decimal