Clone this repo:
  1. a40bbbd Add a `SpanScanner.spanFromPosition()` method (#78) by Natalie Weizenbaum · 2 days ago master
  2. 0de03b5 Bump the github-actions group with 2 updates (#77) by dependabot[bot] · 11 days ago
  3. e1cab8f update lints, require Dart 3.1 (#76) by Kevin Moore · 3 weeks ago
  4. 7b37c1b Bump actions/checkout from 4.1.5 to 4.1.6 in the github-actions group (#75) by dependabot[bot] · 6 weeks ago
  5. 32468bd Bump actions/checkout from 4.1.4 to 4.1.5 in the github-actions group (#74) by dependabot[bot] · 9 weeks ago

Dart CI pub package package publisher

This package exposes a StringScanner type that makes it easy to parse a string using a series of Patterns. For example:

import 'dart:math' as math;

import 'package:string_scanner/string_scanner.dart';

num parseNumber(String source) {
  // Scan a number ("1", "1.5", "-3").
  final scanner = StringScanner(source);

  // [Scanner.scan] tries to consume a [Pattern] and returns whether or not it
  // succeeded. It will move the scan pointer past the end of the pattern.
  final negative = scanner.scan('-');

  // [Scanner.expect] consumes a [Pattern] and throws a [FormatError] if it
  // fails. Like [Scanner.scan], it will move the scan pointer forward.
  scanner.expect(RegExp(r'\d+'));

  // [Scanner.lastMatch] holds the [MatchData] for the most recent call to
  // [Scanner.scan], [Scanner.expect], or [Scanner.matches].
  var number = num.parse(scanner.lastMatch![0]!);

  if (scanner.scan('.')) {
    scanner.expect(RegExp(r'\d+'));
    final decimal = scanner.lastMatch![0]!;
    number += int.parse(decimal) / math.pow(10, decimal.length);
  }

  // [Scanner.expectDone] will throw a [FormatError] if there's any input that
  // hasn't yet been consumed.
  scanner.expectDone();

  return (negative ? -1 : 1) * number;
}