Skip to main content
Solved

How to saparate number before names in street names

  • January 29, 2020
  • 1 reply
  • 17 views

tomjerry.vl
Forum|alt.badge.img

separate only number before the names

 

 

 

Best answer by bwn

This is somewhat answered here with the StringSearcher solution for testing for, and extracting, the numeric part of addresses:

https://knowledge.safe.com/questions/106553/how-to-separate-having-numerical-value-in-street-n.html 

The only difference is a slight change to the Regular Expression to use.  This extracts numbers that exist at the start of the string only (Using "^")

Use this as the Regular Expression in StringSearcher.  This will output a separate Matched Attribute with the number part.

^\d+
This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

1 reply

bwn
Evangelist
Forum|alt.badge.img+26
  • Evangelist
  • 562 replies
  • Best Answer
  • January 29, 2020

This is somewhat answered here with the StringSearcher solution for testing for, and extracting, the numeric part of addresses:

https://knowledge.safe.com/questions/106553/how-to-separate-having-numerical-value-in-street-n.html 

The only difference is a slight change to the Regular Expression to use.  This extracts numbers that exist at the start of the string only (Using "^")

Use this as the Regular Expression in StringSearcher.  This will output a separate Matched Attribute with the number part.

^\d+