ElCanut@jlai.lu to Programmer Humor@programming.dev · 5 days agoAsking the real questionsjlai.luexternal-linkmessage-square209fedilinkarrow-up11arrow-down10
arrow-up11arrow-down1external-linkAsking the real questionsjlai.luElCanut@jlai.lu to Programmer Humor@programming.dev · 5 days agomessage-square209fedilink
minus-squareNomecks@lemmy.calinkfedilinkarrow-up0·edit-25 days agoProbably have to escape it so it will work properly: John\/nDoe
minus-squareAndromxda 🇺🇦🇵🇸🇹🇼@lemmy.dbzer0.comlinkfedilinkEnglisharrow-up0·edit-25 days ago\n already is an escape sequence, consisting of \, the escape character, and n, the code that is responsible for the new line. Together they form an escape sequence.
Easy,
John\nDoe
Probably have to escape it so it will work properly: John\/nDoe
\n
already is an escape sequence, consisting of\
, the escape character, andn
, the code that is responsible for the new line. Together they form an escape sequence.This person unicodes