I'm an XSLT newbie. I've gone through the tutorials and I've been able to do about 80% of what I want, with my XML document. However, I am stuck on something. In my XML document, I have attributes that consist of values like "ERA", "EDA", "EDAR", and so on. Essentially these attributes consist of combinations of the letters E, D, A, and R. The E, D, A, and R map to Edit, Delete, Add, and Read.
If I was doing this imperatively, I would split the string into its component characters and then check each character to see if I should output Edit, Delete, Add, or Read. How can I do something similar in XSLT? I was thinking of using the length and substring functions and making a loop of some sort.