
git-svn-id: http://google-refine.googlecode.com/svn/trunk@7 7d457c2a-affb-35e4-300a-418c747d4874
33 lines
791 B
Java
33 lines
791 B
Java
package com.metaweb.gridlock.expr.functions;
|
|
|
|
import java.util.Properties;
|
|
|
|
import com.metaweb.gridlock.expr.Function;
|
|
|
|
public class ToTitlecase implements Function {
|
|
|
|
@Override
|
|
public Object call(Properties bindings, Object[] args) {
|
|
if (args.length == 1 && args[0] != null) {
|
|
Object o = args[0];
|
|
String s = o instanceof String ? (String) o : o.toString();
|
|
String[] words = s.split("\\s+");
|
|
|
|
StringBuffer sb = new StringBuffer();
|
|
for (int i = 0; i < words.length; i++) {
|
|
String word = words[i];
|
|
if (word.length() > 0) {
|
|
if (sb.length() > 0) {
|
|
sb.append(' ');
|
|
}
|
|
sb.append(word.substring(0, 1).toUpperCase() + word.substring(1).toLowerCase());
|
|
}
|
|
}
|
|
|
|
return sb.toString();
|
|
}
|
|
return null;
|
|
}
|
|
|
|
}
|