summaryrefslogtreecommitdiff
path: root/src/pkg/strings
AgeCommit message (Expand)AuthorFilesLines
2012-04-06Imported Upstream version 1upstream/1Ondřej Surý9-212/+1124
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý4-0/+1615
2011-09-13Imported Upstream version 60Ondřej Surý4-1619/+0
2011-08-03Imported Upstream version 59upstream/59Ondřej Surý3-13/+39
2011-06-30Imported Upstream version 58upstream/58Ondřej Surý2-23/+117
2011-04-28Imported Upstream version 2011.04.27upstream/2011.04.27Ondřej Surý1-1/+1
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý2-22/+113
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý3-283/+358
2010-07-01strings and bytes.Split: make count of 0 mean 0, not infinite.Rob Pike2-36/+49
2010-06-30bytes, strings: add ReplaceRuss Cox2-0/+84
2010-06-14Add IndexFunc and LastIndexFunc.Roger Peppe2-36/+187
2010-05-05Conversion from loop to copy().Kyle Consalus1-3/+1
2010-04-20strings: add ReadRune to ReaderKyle Consalus2-2/+48
2010-04-19Added strings.FieldsFunc, a generalization of strings.Fields in style of the ...Kyle Consalus2-2/+25
2010-04-09strings: add IndexRune, Trim, TrimLeft, TrimRight, and the generic equivalent...Michael Hoisie2-11/+139
2010-03-30Unicode: provide an ability to supplement the case-mapping tablesRob Pike2-0/+40
2010-03-29strings.FIelds: slight simplification.Rob Pike1-4/+5
2010-03-26bytes, strings: IndexOfAnyRobert Griesemer2-3/+31
2010-03-04strings: make Split(s, "", n) fasterSpring Mc1-17/+24
2010-02-25strings: delete Runes, BytesRuss Cox2-23/+3
2010-02-25strings: remove a couple of redundant testsRobert Griesemer1-2/+4
2009-12-15bytes, strings: add new function FieldsAndrey Mirtchovski2-0/+64
2009-12-151) Change default gofmt default settings forRobert Griesemer3-172/+172
2009-12-11bytes, strings: allow -1 in Map to mean "drop this character".Kei Son2-13/+29
2009-12-02Runes: turn string into []intPeter Froehlich2-1/+57
2009-11-30Typo in comment.Robert Griesemer1-1/+1
2009-11-23go: makes it build for the case $GOROOT has whitespacesSergio Luis O. B. Correia1-2/+2
2009-11-20gofmt -r 'α[β:len(α)] -> α[β:]' -w src/cmd src/pkgRuss Cox2-5/+5
2009-11-18add bytes.IndexByte; common case we can make fast later.Rob Pike2-0/+27
2009-11-16 An asked-for-in #go-nuts extension to quickly create a repeatedDavid G. Andersen2-0/+39
2009-11-15fix bug in bytes.Map and add test cases for Map in both strings and bytes pac...Rob Pike1-0/+27
2009-11-09- replaced gofmt expression formatting algorithm withRobert Griesemer2-14/+14
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer3-41/+41
2009-11-06- fine-tuning of one-line func heuristic (nodes.go)Robert Griesemer3-30/+10
2009-11-05gofmt-ify strings, templateRobert Griesemer2-60/+56
2009-11-04bytes.SplitAfter and strings.SplitAfterRuss Cox2-5/+48
2009-10-12fix comment on strings.LastIndex.Russ Cox3-1/+42
2009-10-10change Title to ToTitle for consistency. (the doc comment was already right)Rob Pike1-1/+1
2009-10-07apply gofmt to rand reflect regexp rpc runtime sort strconv strings sync sysc...Russ Cox1-53/+61
2009-09-21move strings.Buffer into bytesRob Pike3-575/+0
2009-09-21step 2 of the great buffer shift.Rob Pike2-61/+273
2009-09-16first cut at a string buffer.Rob Pike3-0/+363
2009-09-15more "declared and not used".Russ Cox2-9/+11
2009-09-01casing operations for byte arraysRob Pike1-4/+4
2009-09-01make ToUpper, ToLower etc. handle unicode properly.Rob Pike2-59/+174
2009-08-31rearrange some constants. unicode package now defines MaxRune and Replacemen...Rob Pike1-2/+3
2009-08-12convert non-low-level non-google pkg codeRuss Cox2-54/+4
2009-06-29io.StringBytes -> strings.BytesRuss Cox1-0/+10
2009-06-24style police: parens in if, for, switch, rangeRuss Cox1-2/+2
2009-06-24Change strings.Split, bytes.Split to take a maximum substring count argument.David Symonds2-35/+51