summary refs log tree commit diff stats
path: root/lib/pure/strutils.nim
Commit message (Expand)AuthorAgeFilesLines
* Update `removeSuffix` implementations to match `removePrefix` (#6636)Bo Lingen2017-10-301-27/+27
* Merge branch 'devel' of github.com:nim-lang/Nim into develAndreas Rumpf2017-10-291-0/+11
|\
| * fixes #6589 (#6590)Fabian Keller2017-10-291-0/+11
* | more replacements for the deprecated '<'Andreas Rumpf2017-10-291-3/+3
|/
* add `strutils.removePrefix` proc (#6473)Bo Lingen2017-10-281-2/+38
* strutils.find enhancements (#6582)Dmitry Atamanov2017-10-281-27/+49
* isAlphaNumberic and isDigit improvement + tests (#6579)Viktor Marosvary2017-10-241-2/+4
* Fix `removeSuffix` rst code blocks Silvio2017-10-231-0/+3
* Merge pull request #6051 from couven92/alignLeftDominik Picheta2017-10-221-2/+29
|\
| * Add safeties for alignLeftFredrik Høisæther Rasch2017-07-041-2/+2
| * Augment align proc with alignLeft procFredrik Høisæther Rasch2017-07-041-2/+29
* | breaking change: arrays of char do not convert to cstring; ptr to array of ch...Andreas Rumpf2017-10-101-2/+8
* | minor breacking change: in string formats '' the '1' is now interpreted as a ...Andreas Rumpf2017-10-061-5/+21
* | in prepration for the upcoming different integer inference rulesAndreas Rumpf2017-09-161-1/+1
* | Fix wrong result of countLines() (#6371)Simon Krauter2017-09-151-1/+2
* | Added Multi-Replacement proc for strings (#6193)Fredrik Høisæther Rasch2017-08-071-0/+35
|/
* Ascii character code 127 (DEL) is not printable and must be quoted. (#5984)Markus F.X.J. Oberhumer2017-06-151-2/+2
* Extend documenation of formatFloat() (#5799)Simon Krauter2017-05-131-0/+2
* strutils.nim: make removeSuffix robust on empty stringsAndreas Rumpf2017-03-181-9/+2
* Make countLines() the same as len(splitLines(s)) (#5470)Simon Krauter2017-03-031-8/+4
* better docs for strutils.escapeAraq2017-02-261-0/+1
* Make toHex work for uints (#5423)Dennis Felsing2017-02-241-1/+1
* Added BiggestUInt (#5378)flyx2017-02-131-1/+1
* Improve & optimize strutils 'find' procs (#5196)Parashurama2017-01-111-15/+49
* Change error handling in split to use doAssert so it is not compiled out when...Chris Heller2016-12-211-1/+1
* Change error handling to use assert as per Araq's commentChris Heller2016-12-211-4/+1
* Guard against calling split with an empty string as a separator. Fixes #5119Chris Heller2016-12-211-0/+5
* better memory trackingAndreas Rumpf2016-11-221-0/+2
* [enh] isUpperAscii*, isLowerAscii* speedup execution by stoppingZajcev Evgeny2016-11-071-4/+6
* stdlib and compiler don't use .immediate anymoreAndreas Rumpf2016-07-291-1/+1
* added strutils.splitWhitespaceAndreas Rumpf2016-07-061-15/+23
* Merge pull request #4361 from jyapayne/fix_splitAndreas Rumpf2016-07-021-70/+88
|\
| * Add transition define for old split behaviorJoey Payne2016-07-011-1/+26
| * Fix #4305: Make split proc for set[char] consistentJoey Payne2016-07-011-70/+63
* | Add useful unicode procs for string manipulationJoey Payne2016-07-011-62/+193
|/
* Fixing isNilOrWhitespace to handle empty/nil.Euan2016-06-241-2/+7
* Fixing isNilOrWhitespace for empty/nil strings.Euan2016-06-241-1/+1
* Adding isNilOrEmpty and isNilOrWhitespaceEuan2016-06-241-1/+22
* moved expandTabs to strmiscAndreas Rumpf2016-06-151-40/+0
* Move partition and rpartition to new strmisc moduleJoey Payne2016-06-131-40/+0
* Add new procs for string manipulationJoey Payne2016-06-131-5/+301
* Added inline pragmas.A. S. Budden2016-06-061-2/+2
* Added startsWith/endsWith implementations for character prefix/suffix (fixes ...A. S. Budden2016-06-061-0/+16
* Merge pull request #4261 from abudden/4197-formatEngAndreas Rumpf2016-06-021-0/+165
|\
| * Implemented string formatting functions for engineering format (fixes #4197).A. S. Budden2016-06-021-0/+165
* | Added missing noSideEffect pragmaA. S. Budden2016-06-021-1/+1
|/
* Merge pull request #4250 from abudden/4198-formatSizeAndreas Rumpf2016-06-021-21/+79
|\
| * Modified trimZeros to modify the passed value.A. S. Budden2016-06-011-15/+14
| * Moved zero trimming into a separate function (code review comment)A. S. Budden2016-06-011-27/+21
| * Reimplementation of formatSize to return a more meaningful value (fixes #4198).A. S. Budden2016-06-011-24/+89