FLUTTER ECOSYSTEM

f3ath/iregexp

I-Regexp의 다트 구현: 상호 운용 가능한 정규 표현식 형식

iregexp 프로젝트 이미지
Stars
2
Forks
0
최근 푸시(UTC)
2025. 7. 6.
프로젝트 상태
활성
Alexey GitHub avatar
GITHUB User

Alexey ↗

If I had ever learnt, I should have been a great proficient.

Salesforce Silicon Valley, CA
언어Dart

이 저장소가 배포한 패키지

사용 중인 의존성

의존성 목록 4 개
  • petitparser^7.0.0
  • lints개발 의존성^6.0.0
  • test개발 의존성^1.21.1
  • check_coverage개발 의존성^0.0.4

원본 README

아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.

README 펼치기 / 접기

iregexp

A Dart implementation of RFC 9485 I-Regexp: An Interoperable Regexp Format

This implementation is validating, that is IRegexp(pattern) throws a formatException if pattern does not conform to I-Regexp. Internally it uses the built-in RegExp class.

import 'package:iregexp/iregexp.dart';

// An example of using the IRegexp class.
void main() {
  final iRegexp = IRegexp('[0-9]+.[0-9]+.[0-9]+');
  print(iRegexp.matches('1.2.3')); // true
  print(iRegexp.matches('foo')); // false
}