
gahlq (gahlq) asked a question.
- user.streetAddress + "\n" + user.city + ", " + user.state + " " + user.zipCode -> addressesWorkFormatted
The problem is that "\n" is treated as a string literal, rather than an escape sequence. So is \r, and %0A, and 
, and so far everything else I can think of. Is this impossible to do? If not, what should I use to get a line break here?