stringprocess 1.0.6 copy "stringprocess: ^1.0.6" to clipboard
stringprocess: ^1.0.6 copied to clipboard

outdatedDart 1 only

A string library for common string operations and general text processing functions.

stringprocess #

A string library for common string operations and general text helper functions.

Status #

Build Status

Usage #

A simple usage example:

import 'package:stringprocess/stringprocess.dart';

main() {
  // A few simple examples.
  StringProcessor tps = new StringProcessor();

  // Print the numbers 1 to 10.
  print(tps.getSequenceString(1, 10, 1));

  // Repeat Something!
  print(tps.getRepeatedString("Mine!", 42));

  // Word count.
  print(tps.getWordCount("Dart is Awesome and cool!"));

  // Line count.
  print(tps.getLineCount("hello\ngood\nevening\nwelcome!\n"));
}

Unit Testing #

  • pub run test

Check source code formatting: #

  • dartfmt -n .

Acknowledgements #

This package makes use of the following Dart packages:

  • html_unescape
  • markdown

Features and bugs #

Please file feature requests and bugs!

1
likes
0
pub points
12%
popularity

Publisher

unverified uploader

A string library for common string operations and general text processing functions.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

html_unescape, markdown

More

Packages that depend on stringprocess