Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isLowerCase (0.04 sec)

  1. android/guava/src/com/google/common/base/Ascii.java

      /**
       * Returns a copy of the input string in which all {@linkplain #isLowerCase(char) lowercase ASCII
       * characters} have been converted to uppercase. All other characters are copied without
       * modification.
       */
      public static String toUpperCase(String string) {
        int length = string.length();
        for (int i = 0; i < length; i++) {
          if (isLowerCase(string.charAt(i))) {
            char[] chars = string.toCharArray();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 21.7K bytes
    - Viewed (0)
Back to top