Skip to main content

Hi, I can read an arcgis online feature service using fme AGO reader. The globalids all have a curly brackets in the inspector. Is there a way to write the feature to a new table without the curly brackets. Curly brackets are messing things up when using globalids in url links. thanks

Before you write the data out, you can use a string replacer and regex to replace the curly braces with nothing.

 

Set the mode of the string replacer to  "Replace Regular Expression" and the "Text To Replace" as 

({|})

Leave the "Replacement Text" blank.

 

The above regex 'translates' to find "{" or "}"


Thanks! that works very well!


Also, is it possible to also add .jpg to the end of each globalid

thanks


Also, is it possible to also add .jpg to the end of each globalid

thanks

you can appended it on in an attribute creator

image


Reply