FLUTTER ECOSYSTEM

cgrep-tool/string_unescape

문자열 표현(유니코드, 줄바꿈, 탭 등)을 해독하는 편리한 유틸리티입니다.

string_unescape 프로젝트 이미지
Stars
3
Forks
5
최근 푸시(UTC)
2021. 10. 25.
프로젝트 상태
활성
cgrep-tool GitHub avatar
GITHUB Organization

cgrep-tool ↗

언어Dart

이 저장소가 배포한 패키지

사용 중인 의존성

의존성 목록 2 개
  • lint개발 의존성^1.0.1
  • test개발 의존성^1.17.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);