commit | 3bc6e54553b59f551cce05b04b95b4cf4b88d187 | [log] [tgz] |
---|---|---|
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | Mon May 08 12:34:56 2023 -0700 |
committer | GitHub <noreply@github.com> | Mon May 08 12:34:56 2023 -0700 |
tree | 8b49b860ff8f1029d0b6ea168d5ae4fdde8e2db2 | |
parent | f7a656fdaaab069fc6f8c9d34d3205ce6100dfb1 [diff] |
Bump actions/checkout from 3.5.0 to 3.5.2 (#57) Bumps [actions/checkout](https://github.com/actions/checkout) from 3.5.0 to 3.5.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/8f4b7f84864484a7bf31766abe9204da3cbe65b3...8e5e7e5ab8b370d6c329ec480221332ada57f0ab) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This package exposes a StringScanner
type that makes it easy to parse a string using a series of Pattern
s. 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; }