Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for trimTrailingFrom (0.21 sec)

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

       * the end of the string. For example:
       *
       * <pre>{@code
       * CharMatcher.anyOf("ab").trimTrailingFrom("abacatbab")
       * }</pre>
       *
       * ... returns {@code "abacat"}.
       */
      public String trimTrailingFrom(CharSequence sequence) {
        int len = sequence.length();
        for (int last = len - 1; last >= 0; last--) {
          if (!matches(sequence.charAt(last))) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/CharMatcher.java

       * the end of the string. For example:
       *
       * <pre>{@code
       * CharMatcher.anyOf("ab").trimTrailingFrom("abacatbab")
       * }</pre>
       *
       * ... returns {@code "abacat"}.
       */
      public String trimTrailingFrom(CharSequence sequence) {
        int len = sequence.length();
        for (int last = len - 1; last >= 0; last--) {
          if (!matches(sequence.charAt(last))) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top