How do I split this address?

Infosphere's Quality Product

Moderators: chulett, rschirm

Post Reply
abc123
Premium Member
Premium Member
Posts: 605
Joined: Fri Aug 25, 2006 8:24 am

How do I split this address?

Post by abc123 »

123 1/2S 13th St

I would like it to be parsed as:

123 1/2 S 13th St

Any tips? Can I do in QualityStage?
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Unhandled Pattern override in ADDR rule set?
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
ashok
Participant
Posts: 43
Joined: Tue Jun 22, 2004 3:04 pm

Post by ashok »

you can also add following code in .pat file, search for Input_Modifications and add following code, this code will put 1/2 in House number suffix, S in street prefix directional.

Input_Modifications
^ | ^ | / | > [{}(-2:-1) PICT = "nc" ] | > | T
copy [2] temp
concat [3] temp
concat [4](n) temp
copy temp {HS}
copy [4] tem2
copy tem2(-c) {PD}
RETYPE [2] 0
RETYPE [3] 0
RETYPE [4] 0

Let me know if this helps,
Thanks
Ashok
Post Reply