RosettaCodeData/Task/String-length/Phix/string-length.phix

4 lines
81 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
constant s = "𝔘𝔫𝔦𝔠𝔬𝔡𝔢"
?length(s)
2019-09-12 10:33:56 -07:00
?length(utf8_to_utf32(s))