From 1e7af5ea40a426bc01d8d30b677392ef0fd4ff3d Mon Sep 17 00:00:00 2001 From: Ben Ostrowsky Date: Mon, 12 Apr 2010 22:08:34 +0000 Subject: [PATCH] Will leave 'unlisted' alone --- sql/base/base.sql | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/sql/base/base.sql b/sql/base/base.sql index ded01ba..6d9de88 100644 --- a/sql/base/base.sql +++ b/sql/base/base.sql @@ -702,7 +702,7 @@ CREATE OR REPLACE FUNCTION migration_tools.attempt_phone (TEXT,TEXT) RETURNS TEX n_digits INTEGER := 0; BEGIN temp := phone; - temp := REGEXP_REPLACE(temp, '^1*[^0-9]*', ''); + temp := REGEXP_REPLACE(temp, '^1*[^0-9]*(?=[0-9])', ''); temp := REGEXP_REPLACE(temp, '[^0-9]*([0-9]{3})[^0-9]*([0-9]{3})[^0-9]*([0-9]{4})', E'\\1-\\2-\\3'); n_digits := LENGTH(REGEXP_REPLACE(REGEXP_REPLACE(temp, '(.*)?[a-zA-Z].*', E'\\1') , '[^0-9]', '', 'g')); IF n_digits = 7 THEN -- 1.7.2.5