mirror of
https://github.com/Julow/Unexpected-Keyboard.git
synced 2024-11-29 18:53:15 +01:00
13 lines
311 B
Java
13 lines
311 B
Java
|
package juloo.keyboard2;
|
||
|
|
||
|
final class Utils
|
||
|
{
|
||
|
/** Turn the first letter of a string uppercase. */
|
||
|
public static String capitalize_string(String s)
|
||
|
{
|
||
|
// Make sure not to cut a code point in half
|
||
|
int i = s.offsetByCodePoints(0, 1);
|
||
|
return s.substring(0, i).toUpperCase() + s.substring(i);
|
||
|
}
|
||
|
}
|