Hi
Is it meant that “RemoveQuotes” doesn’t work when there is a space before or after the separating character, or at the beginning/end of the string?
My datasets can come with or without spaces
st.SetValue('<January>,<February>')
st.Split(',','<','>',TRUE)
Result:
January
February
st.SetValue(' <January> , <February> ')
st.Split(',','<','>',TRUE)
Result:
<January>
<February>
Regards Niels