Skip to main content

I have some data I need to extract some text from, it looks like this:

 

 

ABC1D, 520 c78580]|XD, 2-6 ÂDEAD]

Info in the brackets can also look like e211 X] and s95338 CO]

What I'm trying to do it drop everything except for what is in the brackets, and then filter out/ignore DEAD, and use the number to join(or query, I'm not sure which would be best yet) to another table; or in the case of 211 X match to a different table, or 95338 CO would trigger the workbench to write to a table in SQL. But for now what I need is to get that number in the bracket out to use in FME.

 

 

Thank you

A string searcher with some regex to retrieve the values between square brackets would work here. As long as it's always the first set of square brackets in your string it would be output as the matched attribute

(?<=\h).*?(?=\])

 


A string searcher with some regex to retrieve the values between square brackets would work here. As long as it's always the first set of square brackets in your string it would be output as the matched attribute

(?<=\h).*?(?=\])

 

Thank you very much. I wish I had asked hours ago.  


Reply