summaryrefslogtreecommitdiff
path: root/src/regexp
Commit message (Expand)AuthorAgeFilesLines
* regexp: document and implement that invalid UTF-8 bytes are the same as U+FFFDRuss Cox2021-10-115-3/+21
* all: use bytes.Cut, strings.CutRuss Cox2021-10-063-28/+16
* regexp: fix repeat of preferred empty matchRuss Cox2021-05-138-46/+176
* all: go fmt std cmd (but revert vendor)Russ Cox2021-02-201-0/+1
* regexp/syntax: add note about Unicode character classesTom Payne2020-11-251-1/+2
* regexp/syntax: append patchLists in constant timeAndy Balholm2020-06-181-39/+29
* regexp/syntax: fix comment on p.literal and simplifyRuss Cox2020-04-171-11/+5
* regexp: add (*Regexp).SubexpIndexSylvain Zimmer2020-04-103-14/+59
* regexp: skip long-running benchmarks if -short is specifiedKeith Randall2019-10-171-2/+2
* regexp: add examples for FindSubmatchIndex and LongestPantelis Sampaziotis2019-09-281-0/+28
* regexp: add more examples for Regexp methodsLiz Rice2019-09-181-0/+17
* regexp: add example for NumSubexpPantelis Sampaziotis2019-09-101-0/+7
* regexp: add example for ReplaceAllpsampaz2019-09-051-0/+13
* std: remove unused bits of code all over the placeDaniel Martí2019-09-021-1/+1
* regexp/syntax: exclude full range from String negation caseKeegan Carruthers-Smith2019-05-222-1/+2
* regexp: optimize for provably too short inputsSylvain Zimmer2019-05-155-10/+90
* regexp: clarify docs re Submatch resultDmitry Vyukov2019-05-081-3/+4
* regexp: add ReplaceAllStringFunc exampleValentin Vidic2019-02-271-0/+8
* regexp: limit the capacity of slices of bytes returned by FindXFrancesc Campoy2019-02-262-8/+20
* regexp: use backquotes for all regular expression examplesVladimir Kovpak2018-11-201-21/+21
* regexp: add matching and finding examplesVladimir Kovpak2018-11-191-0/+54
* all: use "reports whether" consistently in the few places that didn'tBrad Fitzpatrick2018-11-021-1/+1
* regexp: add partial Deprecation comment to CopyRuss Cox2018-10-121-2/+6
* regexp: add DeepEqual testRuss Cox2018-10-121-0/+23
* regexp: evaluate context flags lazilyRuss Cox2018-10-123-21/+77
* regexp: use pools for NFA machinesRuss Cox2018-10-122-66/+80
* regexp: split one-pass execution out of machine structRuss Cox2018-10-126-102/+131
* regexp: split bit-state execution out of machine structRuss Cox2018-10-123-139/+162
* regexp: fix BenchmarkMatch_onepass_regexRuss Cox2018-10-111-8/+2
* regexp: simplify BenchmarkCompileOnepassRuss Cox2018-10-111-15/+5
* regexp: fix incorrect name in Match doc commentAlan Donovan2018-09-131-1/+1
* regexp/syntax: don't do both linear and binary sesarch in MatchRunePosIan Lance Taylor2018-08-221-10/+22
* regexp: reword Match documentation to be more like FindRuss Cox2018-07-131-14/+18
* regexp: revert "use sync.Pool to cache regexp.machine objects"Russ Cox2018-07-091-25/+37
* regexp: examples for Regexp.FindIndex and Regexp.FindAllSubmatchIndex methodsAlex Myasoedov2018-06-301-0/+42
* regexp: add QuoteMeta exampleMatthew Broberg2018-06-122-2/+8
* all: update comment URLs from HTTP to HTTPS, where possibleTim Cooper2018-06-013-5/+5
* regexp: use sync.Pool to cache regexp.machine objectsJavier Kohen2018-04-031-37/+25
* regexp/syntax: update perl script to preserve \s behaviorIan Lance Taylor2018-03-291-1/+7
* regexp: document behavior of FindAll* functions when n < 0Diogo Pinela2018-03-281-2/+2
* all: use strings.Builder instead of bytes.Buffer where appropriateBrad Fitzpatrick2018-03-264-16/+15
* all: remove some unused return parametersDaniel Martí2018-03-241-8/+6
* regexp: Regexp shouldn't keep references to inputsOleg Bulatov2018-02-231-0/+5
* regexp/syntax: make Op an fmt.StringerDaniel Martí2018-02-202-0/+28
* regexp: dont use builtin type as variable nameAhmet Soormally2018-02-191-6/+6
* regexp: don't allocate when All methods find no matchesJosh Bleecher Snyder2018-02-132-32/+45
* Revert "go/printer: forbid empty line before first comment in block"Joe Tsai2017-12-011-0/+1
* go/printer: forbid empty line before first comment in blockJoe Tsai2017-11-021-1/+0
* all: unindent some if bodies by exiting earlyDaniel Martí2017-10-311-7/+6
* all: revert "all: prefer strings.IndexByte over strings.Index"Marvin Stenger2017-10-052-3/+3