I have a string being passed into my report (SSRS 2008R2) That I need to parse for display purposes.
O know that I can do it with a SWITCH Statement, however there are enough different possible combinations of the string that It would become cumbersome and potentially slow down the processing.
An example of the possible length of the string is as follows:
;#None;#Awareness;#Desire;#Knowledge;#Abilities;#Reinforcement;#
Any one or a combination of the parts can be selected in a sharepoint site, which then concatenates into this type of list value. I simply need to split it apart for readability.
Any helpful hints?