Parsing and Transforming String Data with TemplateLiteralParser

Hello guys, I'm looking for a way to parse and transform string data enclosed in angle brackets. Looks like the simplest solution is to use TemplateLiteralParser like this:
TemplateLiteralParser("<", String, ">")

This schema works as expected, but then I need to transform it and get just the second element. How can I achieve this?
Was this page helpful?