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

10 lines
112 B
Forth
Raw Permalink Normal View History

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