An open API service indexing awesome lists of open source software.

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.

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;
}
```