Assuming a is required, and b,c is required, the following 2 results were found.
was not accepting "\n" as a new line character and instead would render/display it as "\n"... What I have Me,Myself,I\na,b,c What I want Me,Myself,I a,b,c How? So in this article I just want to list some various methods of inserting a new line...
for each v_FieldName in l_ExcludeFields { l_FieldApiNames.removeElement(v_FieldName); } info l_FieldApiNames; // yields: // a,b,c,d,e // a,c,e // compared to: for each v_FieldName in l_FieldApiNames { if(!l_ExcludeFields.contains(v_FieldName)) {... do...