<<< Character literals | Index | String with quotation marks >>> |
Here is a string with a new line:
"Code: JSPS\nPrice: $49.50"
The resulting text is
Code: JSPS Price: $49.50
A string with tabs, like
"Joe\tSmith\rKate\tLewis"
returns result
Joe Smith Kate Lewis
<<< Character literals | Index | String with quotation marks >>> |