Vijay Chouhan
Vijay Chouhan

Reputation: 4883

How to capitalize each first word of string rails3

I have a string:

test = "estrela do mar, calangute"

I want a string:

Estrela Do Mar, Calangute

I tried:

test.upcase

Which gave me:

ESTRELA DO MAR, CALANGUTE

And:

test.capitalize

Returned:

Estrela do mar, calangute

Upvotes: 0

Views: 156

Answers (1)

Sachin Singh
Sachin Singh

Reputation: 7225

try this out

  test = "estrela do mar, calangute"

  test.titleize

  => "Estrela Do Mar, Calangute" 

Upvotes: 7

Related Questions