We are about to switch to a new forum software. Until then we have removed the registration on this forum.
How do I create a string with a backslash, something like this
String hello = "/Hello world\"
but this doesn't work since its just for escape sequences
Answers
Try
\\
Kf
@kfrajer That does the job, Thanks!