Skip to main content
Question

split attribute value by comma

  • July 22, 2019
  • 2 replies
  • 472 views

Forum|alt.badge.img+1

Hi guys, i would like to split attribute value into 2 substrings separated by comma delimeter. I am unable to split it with string replacer or attribute creator.

Type of data:

What i tried:

@Substring(@Value(NASLOV),0,@FindString(@Value(NASLOV),","))

 

and

Any suggestions?

 

thanks in advance,

 

Bye Miha

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

2 replies

david_r
Celebrity
  • July 22, 2019

Have you looked at the AttributeSplitter? You can then use e.g. an AttributeRenamer to rename the resulting list elements, e.g.


Forum|alt.badge.img+1
  • Author
  • July 22, 2019

Have you looked at the AttributeSplitter? You can then use e.g. an AttributeRenamer to rename the resulting list elements, e.g.

That one worked great! Thanks.