Sha256: 980e9eadbf48863745882e02db73c2571527b612afda08cbe82eea71f8cbea5b
Contents?: true
Size: 572 Bytes
Versions: 22
Compression:
Stored size: 572 Bytes
Contents
class String # Return true if the string is capitalized, otherwise false. # # "THIS".capitalized? #=> true # "This".capitalized? #=> true # "this".capitalized? #=> false # #-- # Credit goes to Phil Tomson. #++ def capitalized? self =~ /^[A-Z]/ end end #class String # _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # =begin test require 'test/unit' class TCString < Test::Unit::TestCase def test_capitalized? assert( 'Abc'.capitalized? ) end end =end
Version data entries
22 entries across 22 versions & 1 rubygems