FLUTTER ECOSYSTEM

f3ath/iregexp

I-Regexp का डार्ट क्रांति: एक अंतरोपयोगी नियमित व्यंजक प्रारूप

iregexp प्रोजेक्ट कवर
Stars
2
Forks
0
अंतिम पुश (UTC)
6 जुल॰ 2025
प्रोजेक्ट स्थिति
सक्रिय
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
}