Skip to content

Latest commit

 

History

History
45 lines (29 loc) · 834 Bytes

README.md

File metadata and controls

45 lines (29 loc) · 834 Bytes

Dart Tokenizer

Dart

Converts a stream of strings into a stream of tokens separated by delimiters.

Installation

pubspec.yaml:

dependencies:
  tokenizer: ^0.0.1

or

pub global activate tokenizer

Example

import 'dart:async';

import 'package:tokenizer/tokenizer.dart';

void main(List<String> args) async {
  final string = 'Hello, world';
  final tokenizer = Tokenizer({','});
  final c = StreamController<String>();

  c.add(string);
  c.close();

  final tokens = await c.stream.transform(tokenizer.streamTransformer).toList();
  print(tokens); // [Token("Hello"), Token(","), Token(" "), Token("world")]
}

License

MIT