I am new to JSTL and figuring out a way to split a string using another string. For example supppose my string is
s= "Hello! Good Morning",
and the
t = "Good ",
then I should have str[0] = 'Hello! ' and str[1] = 'Morning'. However if I put this into
${fn:split(s, t)}
it is removing all 'G','o','d' and ' '.
Thanks