Can you explain what you’re trying to do? The second half of your graph doesn’t really make sense. You get the parameter and then you split the list only to try to convert it back to itself. I think you’re trying to get the element here, as @_Vijay suggested, but you also split the list only to provide the same value to all the elements.
Doing it manually (picking the elements to filter by index) isn’t very effective. You’d have to modify your graph every time the lsit changes.
I’d suggest using Element.GetParameterValueByName instead of Parameter.ParameterByName. ParameterByName returns the parameter element whereas GetParameterValueByName will return just the value. You can then use a conditional statement or String.Replace node to replace all ‘E’ values with ‘N’.