Format Phone Number: Difference between revisions

From Starfish ETL
Jump to navigation Jump to search
No edit summary
No edit summary
Line 31: Line 31:


<source lang="vb">
<source lang="vb">
Function FormatPhone(phone)
Function ScriptedField
dim wPhone
    dim oldphone
dim wPos
dim phone
dim wPhoneNbr
dim xPos
dim wPhoneExt
dim plusPos
wPhone = phone
dim extension
wPos = InStr(1, wPhone, "+")
    oldphone="@@ORG:phone_office@@"
if wPos > 0 then
phone=oldphone
FormatPhone = phone
 
else
if len(phone) <> 0 then
wPos = InStr(1, LCase(wPhone), "x")
'Remove all non-numberic characters except the x and + sign.
if wPos > 0 then
With CreateObject("vbscript.regexp")
wPhoneNbr = Trim(Left(wPhone, (wPos - 1)))
.Pattern = "[^0-9x+]"
wPhoneExt = Trim(Right(LCase(wPhone), (Len(wPhone) - (wPos) + 1)))
.Global = True
phone = .Replace(phone, "")
End With
 
plusPos = inStr(1,phone,"+")
 
if plusPos > 0 then
'Ignore foreign phone numbers.
ScriptedField = oldphone
else
else
wPhoneNbr = Trim(wPhone)
'break off the extension.
wPhoneExt = ""
xPos = inStr(1,LCase(phone),"x")
end if
if xPos > 0 then
if IsNumeric(wPhoneNbr) then
extension = Trim(Right(LCase(phone), (Len(phone) - (xPos) + 1)))
if Len(wPhoneNbr) = 7 then
phone = Trim(Left(phone, (xPos - 1)))
FormatPhone = Left(wPhoneNbr, 3) & "-" & Right(wPhoneNbr, 4) & " " & wPhoneExt
Else
extension = ""
End If
'format non-foreign phone numbers and phone numbers without an extension.
if Len(phone)=11 and Left(phone,1)="1" then  
phone = Mid(phone,2)
ScriptedField = mid(phone,1,3) & "-" & mid(phone,4,3) & "-" & mid(phone,7) & extension
elseif Len(phone)=10 then
ScriptedField = mid(phone,1,3) & "-" & mid(phone,4,3) & "-" & mid(phone,7) & extension
else
else
if Len(wPhoneNbr) = 10 then
ScriptedField = oldphone
FormatPhone = Left(wPhoneNbr, 3) & "-" & Mid(wPhoneNbr, 4, 3) & "-" & Right(wPhoneNbr, 4) & " " & wPhoneExt
end if
else
if Len(wPhoneNbr) = 11 then
FormatPhone = Left(wPhoneNbr, 1) & "-" & Mid(wPhoneNbr, 2, 3) & "-" & Mid(wPhoneNbr, 5, 3) & "-" & Right(wPhoneNbr, 4) & " " & wPhoneExt
else
FormatPhone = phone
end if
end if
end if    
else
FormatPhone = phone
end if
end if
end if
    end if
End Function
End Function
</source>
</source>

Revision as of 22:14, 12 October 2015

Here are a couple of sample functions to help you clean up phone numbers.

Function FormatPhone(ph)
	dim phone
	phone=ph

	phone = Replace(phone,"(","")
	phone = Replace(phone,")","")
	phone = Replace(phone," ","")
	phone = Replace(phone,".","")
	phone = Replace(phone,"-","")
	phone = lcase(phone)
	if Len(phone)=11 and Left(phone,1)="1" then phone=Mid(phone,2)

	if Len(phone)=10 then
		FormatPhone = "(" & mid(phone,1,3) & ")" & mid(phone,4,3) & "-" & mid(phone,7)
	elseif Len(phone)>10 then
		if mid(phone,11,1)="x" then
			FormatPhone = "(" & mid(phone,1,3) & ")" & mid(phone,4,3) & "-" & mid(phone,7)
		else
			FormatPhone = ph
		end if
	else
		FormatPhone = ph
	end if
End Function


Function ScriptedField
    dim oldphone
	dim phone
	dim xPos
	dim plusPos
	dim extension
    oldphone="@@ORG:phone_office@@"
	phone=oldphone

	if len(phone) <> 0 then
		'Remove all non-numberic characters except the x and + sign.
		With CreateObject("vbscript.regexp")
			.Pattern = "[^0-9x+]"
			.Global = True
			phone = .Replace(phone, "")
		End With

		plusPos = inStr(1,phone,"+")
	   
		if plusPos > 0 then
			'Ignore foreign phone numbers.
			ScriptedField = oldphone
		else
			'break off the extension.
			xPos = inStr(1,LCase(phone),"x")
			if xPos > 0 then
				extension = Trim(Right(LCase(phone), (Len(phone) - (xPos) + 1)))
				phone = Trim(Left(phone, (xPos - 1)))
			Else
				extension = ""
			End If
			'format non-foreign phone numbers and phone numbers without an extension.
			if Len(phone)=11 and Left(phone,1)="1" then 
				phone = Mid(phone,2)
				ScriptedField = mid(phone,1,3) & "-" & mid(phone,4,3) & "-" & mid(phone,7) & extension
			elseif Len(phone)=10 then
				ScriptedField = mid(phone,1,3) & "-" & mid(phone,4,3) & "-" & mid(phone,7) & extension
			else
				ScriptedField = oldphone
			end if
		end if
    end if
End Function