Skip to main content

I have a table of addresses with these values in a single field, example: Main St/Carter Ave. I want to put Main St in a new field named StreetName, and Carter Ave in a new field named IntStreetName. I know there must be a method for parsing the values to the left and right of the "/" separator. How can I do this in FME?

 

I know how to do this in python using split. I am new to FME.

There are many ways of accomplishing this in FME.

Use an AttributeSplitter to create a list, followed by an AttributeManager to extract the list values to attributes.

Or use regular expressions in an AttributeManager.

Split_AdressesIf you want to, you can even do it in Python, using a PythonCaller.


Reply