Thanks!
Thanks!
Dont have FME here to test it, so I'll state the obvious....Did you try the AttributeSplitter with DM and MS as special characters?
You can regroup the list elements into columns by diferents list transformers.
Hope this helps
take a look at the SubstringExtractor, it will allow you to split a string at a given position.
David
come to think of it, you might want to add a StringFormatter before the SubstringExtractor to make sure that the input string always contains the same number of digits (i.e. to add one or two leading zeros where degrees < 100).
Example: The format string "09d" will ensure that your input to the SubstringExtractor is alway 9 digits.
You can then use the following values in the SubstringExtractor to split it up:
0-2: DDD
3-4: MM
5-8: SSSS
David