ElCanut@jlai.lu to Programmer Humor@programming.dev · 12 hours agoAsking the real questionsjlai.luimagemessage-square122fedilinkarrow-up1706arrow-down14
arrow-up1702arrow-down1imageAsking the real questionsjlai.luElCanut@jlai.lu to Programmer Humor@programming.dev · 12 hours agomessage-square122fedilink
minus-squareAndromxda 🇺🇦🇵🇸🇹🇼@lemmy.dbzer0.comlinkfedilinkEnglisharrow-up29·6 hours agoEasy, John\nDoe
minus-squareNomecks@lemmy.calinkfedilinkarrow-up1arrow-down8·edit-25 hours agoProbably have to escape it so it will work properly: John\/nDoe
minus-squareAndromxda 🇺🇦🇵🇸🇹🇼@lemmy.dbzer0.comlinkfedilinkEnglisharrow-up28·edit-25 hours 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