-
Some of my tracks have strings such as Any guidance on how to construct the appropriate |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Unfortunately, there's no built-in way to do complex string manipulations like that. One creative (although complicated) solution might be to use the new "formatted modify" functionality (#488) together with the |
Beta Was this translation helpful? Give feedback.
Unfortunately, there's no built-in way to do complex string manipulations like that. One creative (although complicated) solution might be to use the new "formatted modify" functionality (#488) together with the
inline
plugin. That is, you could define an inline field like$truncated_comments
to becomments.split(',', 1)[0]
or similar and then dobeet modify comments=$truncated_comments
. Could work!!