Home
last modified time | relevance | path

Searched refs:hyphenLocation (Results 1 – 1 of 1) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/test/
DDisplayAndInputProcessor.java645 int hyphenLocation = value.indexOf("-"); in normalizeHyphens() local
646 if (hyphenLocation > 0 && in normalizeHyphens()
647 Character.isDigit(value.charAt(hyphenLocation - 1)) && in normalizeHyphens()
648 hyphenLocation < value.length() - 1 && in normalizeHyphens()
649 Character.isDigit(value.charAt(hyphenLocation + 1))) { in normalizeHyphens()
651 sb.append(value.substring(0, hyphenLocation)); in normalizeHyphens()
653 sb.append(value.substring(hyphenLocation + 1)); in normalizeHyphens()