FLUTTER ECOSYSTEM

cgrep-tool/string_unescape

文字列表現(Unicode、改行、タブなど)をアンエスケープするための便利なユーティリティ。

string_unescape のプロジェクト画像
Stars
3
Forks
5
最終プッシュ(UTC)
2021/10/25
プロジェクト状態
公開中
cgrep-tool GitHub avatar
GITHUB Organization

cgrep-tool ↗

言語Dart

このリポジトリが公開するパッケージ

使用している依存関係

依存関係一覧 2 件

元の README

以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。

README を開く / 閉じる

String unescape

Handy utility to unescape string representation (unicode, newline, tab, etc).

Example

Unescape string

expect(unescape(r"a\nb"), "a\nb");
expect(unescape(r"a\x0ab"), "a\nb");

Unescape character

expect(unescapeChar(r"a"), 97);
expect(unescapeChar(r"🀀"), 0x1F000);