@hackage / strings

Functions for working with strings, including Text, ByteString, etc.

Latest1.1

About

Metadata

  • Last updated , by Bodigrim
  • License MIT
  • Categories Text Processing
  • Maintained by: Julian Fleischer <julian.fleischer@fu-berlin.de>

  • Lottery factor: 0

Links

Installation

Readme

This package provides various functions for working with strings, such as join, split, toUppercase, etc.

The functions in this package work with all kinds of strings such as Text, ByteString, String, and their respective lazy counter parts. There is also an interface which is agnostic of the underlying string type.

v1.0.2
Fixed an issue with strSplitAll. Applied to the empty string it should return an empty list, but it returned a list containing a single empty string. It now returns correctly the empty list.
v1.1
Added strToUpper, strToLower, strCapitalize, strCons, and strMap. Also sCapitalize, sCons, and sMap.