https://github.com/rustkas/abc
Lists of characters of various alphabets. Use them in regex classes to find the characters you need.
https://github.com/rustkas/abc
Last synced: about 1 year ago
JSON representation
Lists of characters of various alphabets. Use them in regex classes to find the characters you need.
- Host: GitHub
- URL: https://github.com/rustkas/abc
- Owner: rustkas
- License: mit
- Created: 2020-07-07T17:31:17.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-07T18:45:41.000Z (almost 6 years ago)
- Last Synced: 2025-01-26T10:45:04.144Z (over 1 year ago)
- Language: Dart
- Size: 9.77 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# ABC
Lists of characters of various alphabets. Use them in regular expression classes to find the characters you need.
## Usage
A simple usage example:
```dart
import 'package:abc/abc.dart';
main() {
final russian = Russian();
final upperCase = russian.upperCase;
final lowerCase = russian.lowerCase;
}
```