Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
1
Task/String-length/Ruby/string-length-1.rb
Normal file
1
Task/String-length/Ruby/string-length-1.rb
Normal file
|
|
@ -0,0 +1 @@
|
|||
"J̲o̲s̲é̲".bytesize
|
||||
1
Task/String-length/Ruby/string-length-2.rb
Normal file
1
Task/String-length/Ruby/string-length-2.rb
Normal file
|
|
@ -0,0 +1 @@
|
|||
"J̲o̲s̲é̲".chars.length
|
||||
1
Task/String-length/Ruby/string-length-3.rb
Normal file
1
Task/String-length/Ruby/string-length-3.rb
Normal file
|
|
@ -0,0 +1 @@
|
|||
"J̲o̲s̲é̲".grapheme_clusters.length
|
||||
4
Task/String-length/Ruby/string-length-4.rb
Normal file
4
Task/String-length/Ruby/string-length-4.rb
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: iso-8859-1 -*-
|
||||
s = "møøse"
|
||||
puts "Byte length: %d" % s.bytesize
|
||||
puts "Character length: %d" % s.length
|
||||
4
Task/String-length/Ruby/string-length-5.rb
Normal file
4
Task/String-length/Ruby/string-length-5.rb
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
s = "møøse"
|
||||
puts "Byte length: %d" % s.bytesize
|
||||
puts "Character length: %d" % s.length
|
||||
4
Task/String-length/Ruby/string-length-6.rb
Normal file
4
Task/String-length/Ruby/string-length-6.rb
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: gb18030 -*-
|
||||
s = "møøse"
|
||||
puts "Byte length: %d" % s.bytesize
|
||||
puts "Character length: %d" % s.length
|
||||
12
Task/String-length/Ruby/string-length-7.rb
Normal file
12
Task/String-length/Ruby/string-length-7.rb
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
class String
|
||||
# Define String#bytesize for Ruby 1.8.6.
|
||||
unless method_defined?(:bytesize)
|
||||
alias bytesize length
|
||||
end
|
||||
end
|
||||
|
||||
s = "文字化け"
|
||||
puts "Byte length: %d" % s.bytesize
|
||||
puts "Character length: %d" % s.gsub(/./u, ' ').size
|
||||
Loading…
Add table
Add a link
Reference in a new issue