| Age | Commit message (Expand) | Author |
| 2023-09-01 | bytes, strings: use "reports whether" in HasPrefix and HasSuffix | Matthew Dempsky |
| 2023-08-25 | internal/bytealg: add generic LastIndexByte{,String} | Tobias Klauser |
| 2023-08-07 | strings: use the builtin max function | Muhammad Falak R Wani |
| 2023-07-20 | strings: add benchmark for Builder.WriteString | Roger Peppe |
| 2023-05-12 | strings: correct NewReader documentation | Jabar Asadi |
| 2023-02-27 | bytes, strings: avoid unnecessary zero initialization | Joe Tsai |
| 2023-01-24 | bytes, strings: add ContainsFunc | hopehook |
| 2023-01-20 | bytes,strings: add some examples | fangguizhen |
| 2023-01-20 | bytes, strings: rename field in CutSuffix tests | fangguizhen |
| 2023-01-17 | strings: remove redundant symbols | fangguizhen |
| 2022-10-31 | internal/bytealg: fix bug in index function for ppc64le/power9 | Archana R |
| 2022-09-27 | bytes,strings: optimize Repeat | Carlo Alberto Ferraris |
| 2022-09-21 | bytes, strings: add ASCII fast path to EqualFold | Charlie Vieth |
| 2022-09-14 | strings: reuse the input string for Repeat count of 1 | Anuraag Agrawal |
| 2022-09-13 | strings: add a test case of growLen is negative | cui fliter |
| 2022-09-07 | strings: simplify code using unsafe.StringData | cuiweixie |
| 2022-08-23 | strings: rely on utf8.AppendRune | Joe Tsai |
| 2022-08-19 | bytes, strings: s/after/before/ in CutSuffix | Michal Bohuslávek |
| 2022-08-19 | strings: reduce allocation for byteReplacer | Cuong Manh Le |
| 2022-08-19 | strings: speed up ToUpper()/ToLower() by batch writing data with Builder | Andy Pan |
| 2022-08-16 | strings, bytes: add CutPrefix and CutSuffix | Changkun Ou |
| 2022-08-08 | strings: avoid utf8.RuneError mangling in Split | Joe Tsai |
| 2022-04-29 | strings: adding micro-optimization for TrimSpace | Illirgway |
| 2022-04-11 | all: gofmt main repo | Russ Cox |
| 2022-04-07 | strings, bytes: improve the description of simple case-folding in EqualFold | hopehook |
| 2022-04-05 | all: separate doc comment from //go: directives | Russ Cox |
| 2022-04-02 | strings: document the use of simple case-folding in EqualFold | hopehook |
| 2022-03-31 | strings: limits allocation size for SplitN | Philippe Antoine |
| 2022-02-19 | strings: fix typo in comment | George Looshch |
| 2022-02-08 | bytes, strings: mention Cut in docs for Split and SplitN | Ian Lance Taylor |
| 2021-12-13 | all: gofmt -w -r 'interface{} -> any' src | Russ Cox |
| 2021-11-05 | strings, bytes: deprecate Title | smasher164 |
| 2021-11-02 | net/netip: add new IP address package | Brad Fitzpatrick |
| 2021-11-01 | strings: align Clone output with string([]byte("")) | Martin Möhrmann |
| 2021-10-06 | strings,bytes: avoid allocations in Trim/TrimLeft/TrimRight | Carlo Alberto Ferraris |
| 2021-10-06 | bytes, strings: add Cut | Russ Cox |
| 2021-09-13 | strings: add Clone function | Martin Möhrmann |
| 2021-08-25 | bytes, strings: optimize Trim for single byte cutsets | Joe Tsai |
| 2021-08-22 | strings: smarter growth of temporal buffer and avoid copying on return | Ignacio Hagopian |
| 2021-02-24 | bufio, bytes, strings: handle negative runes in WriteRune | David Benjamin |
| 2020-10-30 | strings: complete Reader doc string | Robert Griesemer |
| 2020-10-30 | strings: complete documentation of strings.Reader | Norman B. Lancaster |
| 2020-10-20 | all: update references to symbols moved from io/ioutil to io | Russ Cox |
| 2020-08-17 | strings: optimize Replace by using a strings.Builder | Polina Osadcha |
| 2020-04-29 | bytes, strings: align requirements for functions passed to FieldFuncs | Martin Möhrmann |
| 2020-04-28 | strings: simpler and slightly faster implementation of FieldsFunc | Robert Griesemer |
| 2020-04-23 | strings: remove an obsolete doc note for FieldsFunc | Praveen Kumar |
| 2020-03-30 | strings: make variable/type association consistent in function signatures | Alexander Greim |
| 2020-03-23 | strings: narrow the search range of IndexByte in Index | Andy Pan |
| 2020-03-11 | strings, bytes: improve IndexAny and LastIndexAny performance | erifan01 |