abouttreesummaryrefslogcommitdiff
path: root/srcs/juloo.keyboard2/StringUtils.java
blob: 2994509067dc2ece280d8b28f78cf0e7cd60079d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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);
  }
}