secondNumberStartPattern property

RegExp secondNumberStartPattern
final

Regular expression of characters typically used to start a second phone number for the purposes of parsing. This allows us to strip off parts of the number that are actually the start of another number, such as for: (530) 583-6985 x302/x2303 -> the second extension here makes this actually two phone numbers, (530) 583-6985 x302 and (530) 583-6985 x2303. We remove the second extension so that the first number is parsed correctly.

Implementation

static final RegExp secondNumberStartPattern = RegExp(r'[\\/] *x');