So lets say I have a web service script that splits each variable like so...
var variables = source.u_variables.toString().split(';');
When the user enters their variables, if they end the variable with their own ";" will this cause any issues? I'm having a problem with one particular request that was sent over. When I look at the data, it seems the user put their own semicolon after their variables. Could this be an issue?
Example of the data:
Reason for Leaving: Sick
Doctors Note: Yes
Parents Notified: Yes
This was the data we received that was throwing us some issues:
Reason for Leaving: Sick; Flu; Cold;
Doctors Note: Yes
Parents Notified: Yes