0
How to print this Link with 2 Quotes "https:\\www.youtube.com/c/TarekAlabd"
How to output link with 2 Quotes
4 odpowiedzi
+ 1
use \ before character to be escaped:
"\"https://www.youtube.com/c/TarekAlabd\""
if you need to put raw \ in your string, escape it by put it twice (so to output '\\', you should to put 4: '\\\\', but urls are made with 'https://', not 'https:\\' ;)
+ 2
Please use the language name that is relevant to your question in tags.
0
I used it!
0
Ok got it thanks for ur help