Home | History | Annotate | Download | only in phonenumbers

Lines Matching refs:punctuation

51    *   <li>Leading punctuation / plus signs are limited.
52 * <li>Consecutive occurrences of punctuation are limited.
121 * Punctuation that may be at the start of a phone number - brackets and plus signs.
148 /* Limit on the number of consecutive punctuation characters. */
155 /* Limit on the number of blocks separated by punctuation. Uses digitBlockLimit since some
159 /* A punctuation sequence allowing white space. */
160 String punctuation = "[" + PhoneNumberUtil.VALID_PUNCTUATION + "]" + punctuationLimit;
161 /* A digits block without punctuation. */
168 /* Phone number pattern allowing optional punctuation. */
170 "(?:" + leadClass + punctuation + ")" + leadLimit +
171 digitSequence + "(?:" + punctuation + digitSequence + ")" + blockLimit +
399 // punctuation, check the previous character.
402 // We return null if it is a latin letter or an invalid punctuation symbol.
671 // just the first-group symbol ($1) with punctuation.