I have a field that has an odd structure. It looks like this:
asdfas\\qwerqwer\\..\\vcbnvcn
To be clear, the .. means that there's an arbitrary number of double-slash separated strings, not a literal double dot. Also, each field can be of arbitrary length. I need the last field. In the example, I need to return vcbnvcn. I've attempted both ETL and Beast Mode methods. The ETL method seems to require splitting into lots of extra columns, and then for each row somehow getting the last one that's populated. The Beast Mode method seems to spin off into far more complex methods than I understand in my very new state of Domo learning.
I guess I figured there would be something straightforward, like the Python:
<string>.split('\\')[-1]
Is there a way to do this? Thank you.