String Character Length: Difference between revisions

Content deleted Content added
Added Clean example
→‎[[Ruby]]: Ruby core counts bytes
Line 271:
==[[Ruby]]==
[[Category:Ruby]]
'''Library:''' [[active_support]]
 
require 'active_support'
string="Hello world"
printputs string"Hello World".chars.length
or
puts "Hello World".length
 
==[[Scheme]]==