Skip to content

Instantly share code, notes, and snippets.

@gildotdev
Created March 29, 2013 00:57
Show Gist options
  • Save gildotdev/5268034 to your computer and use it in GitHub Desktop.
Save gildotdev/5268034 to your computer and use it in GitHub Desktop.
Google Refine Expression Language (GREL) Syntax that will capitalize every word
join(
forEach(
value.trim().split(" "),
v,
v.substring(0,1).toUppercase() + v.substring(1)
)
," ")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment