Home | History | Annotate | Download | only in base

Lines Matching refs:separator

32  * into substrings, by recognizing a <i>separator</i> (a.k.a. "delimiter")
75 * The separator recognized by the splitter does not have to be a single
108 * Returns a splitter that uses the given single-character separator. For
112 * @param separator the character to recognize as a separator
113 * @return a splitter, with default settings, that recognizes that separator
115 public static Splitter on(char separator) {
116 return on(CharMatcher.is(separator));
121 * given {@code CharMatcher} to be a separator. For example, {@code
126 * character is a separator
149 * Returns a splitter that uses the given fixed string as a separator. For
153 * @param separator the literal, nonempty string to recognize as a separator
154 * @return a splitter, with default settings, that recognizes that separator
156 public static Splitter on(final String separator) {
157 checkArgument(separator.length() != 0,
158 "The separator may not be the empty string.");
165 int delimeterLength = separator.length();
171 if (toSplit.charAt(i + p) != separator.charAt(i)) {
181 return separatorPosition + separator.length();
190 * pattern} to be a separator. For example, {@code
195 * is a separator. This pattern may not match the empty string.
224 * pattern (regular expression) to be a separator. For example, {@code
230 * is a separator. This pattern may not match the empty string.
351 * that contains the separator.
357 * separatorPosition} that does not contain a separator. This method is only