v2.0.0
string_unescape
Nützliches Hilfsmittel zum Unescape von Zeichenfolgenrepräsentationen (Unicode, Zeilenumbruch, Tabulator usw.).
6Likes 26.90030-Tage-Downloads140Pub-Punkte
AndroidiOSWebmacOSWindowsLinux
Nützliches Hilfsmittel zum Unescape von Zeichenfolgenrepräsentationen (Unicode, Zeilenumbruch, Tabulator usw.).
Englischer Projektschnappschuss. Aktuelle Inhalte auf GitHub.
Handy utility to unescape string representation (unicode, newline, tab, etc).
expect(unescape(r"a\nb"), "a\nb");
expect(unescape(r"a\x0ab"), "a\nb");
expect(unescapeChar(r"a"), 97);
expect(unescapeChar(r"🀀"), 0x1F000);