Hi
i wish to modify a string. In ssis I have a step which is a "Derived column transformation editior". I have a string such as:
edit=style?form=exy?test=x~~StringIWantToRemove
I wish to remove "~~StringIWantToRemove" "~~" is the delimiter "StringIWantToRemove" is a random string og any value (apart from the delimiter)
I would try find index of ~~ then len of string then remove from that point but not sure how to do it in ssis.
help?