Skip to content

Instantly share code, notes, and snippets.

@muthuraj57
Created December 7, 2016 18:49
Show Gist options
  • Save muthuraj57/f69a7b338269f571b248bce88a1943be to your computer and use it in GitHub Desktop.
Save muthuraj57/f69a7b338269f571b248bce88a1943be to your computer and use it in GitHub Desktop.
/*
* Return user short name
* */
public static String getShortName(String name) {
String[] strings = name.split(" ");//no i18n
String shortName;
if (strings.length == 1) {
shortName = strings[0].substring(0, 2);
} else {
shortName = strings[0].substring(0, 1) + strings[1].substring(0, 1);
}
return shortName.toUpperCase();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment