Dear All,
in the attribute "id" I have strings that have the following format
411d8e4d-2de6-0f5b-e100-00000a4c0a0d
I would like to remove the dash in an AttributeManager (I know, I could do it with StringReplacer). I've tried the following formula :
@ReplaceString(@Value(id), "-", ""))
but it does not work (id remain unchanged), whereas the formula with FindString here below gives the expected result (8).
@FindString(@Value(id),"-")
Why the FindString is working but not ReplaceString ? What am I doing wrong ?
I was also able to do it in the regular expression-way,
@ReplaceRegularExpression(@Value(id),"\-","")
but I don't understand how ReplaceString works. Has anyone an explanation ?
Thanks in advance