golang-github-charlievieth-strcase 0.0.5-1
Package Information
| Description | Case-insensitive implementation of Go's strings package (library) Package strcase (/) and bytcase (/bytcase/README.md) are case- insensitive and Unicode aware implementations of the Go standard library's strings (https://pkg.go.dev/strings) and bytes (https://pkg.go.dev/bytes) packages that are accurate, fast, and never allocate memory. Simple Unicode case-folding is used for all comparisons. This matches the behavior of strings.EqualFold (https://pkg.go.dev/strings#EqualFold) and regexp.Regexp (https://pkg.go.dev/regexp#Regexp) (when the pattern is compiled with the case-insensitive flag (?i)) and is more accurate (and significantly more efficient) than using strings.ToLower (https://pkg.go.dev/strings#ToLower) or strings.ToUpper (https://pkg.go.dev/strings#ToUpper) to normalize the needle / haystack before searching. **Note:** The bytcase package is analogous to the strcase package; whatever applies to strcase also applies to bytcase. For simplicity, the documentation primarily refers to strcase. Unless otherwise noted, all comments apply to both packages. Overview * Drop-in replacement for the strings (https://pkg.go.dev/strings) and bytes (https://pkg.go.dev/bytes) packages that provides Unicode aware case-insensitive matching. * Simple Unicode case-folding is used for all comparisons - making it more accurate than using strings.ToLower (https://pkg.go. dev/strings#ToLower) or strings.ToUpper (https://pkg.go.dev/strings#ToUpper) for case- insensitivity. * Any string matched by strcase or bytcase will also match with strings.EqualFold (https://pkg.go.dev/strings#EqualFold) or bytes.EqualFold (https://pkg.go.dev/bytes#EqualFold) * Fast and optimized for amd64 and arm64. For non-pathological inputs strcase is only 25-50% slower than the strings package. * On average strcase/bytcase are 25x faster than using than using a case-insensitive regexp.Regexp (https://pkg.go.dev/regexp#Regexp) (see the below benchmarks section). |
|---|---|
| Maintainer | Debian Go Packaging Team <team+pkg-go@tracker.debian.org> |
| Changed By | Stephen Gelman <ssgelm@debian.org> |
| Sponsor | ssgelm@gmail.com |
| Distribution | unstable |
| Architecture | all |
| VCS | git: https://salsa.debian.org/go-team/packages/golang-github-charlievieth-strcase.git (browse) |
| Closes | #1127089 |
| Tracker | https://tracker.debian.org/pkg/golang-github-charlievieth-strcase |
| Uploaded | 6 days ago |
New Package Report
.changes
| Changed-By | Stephen Gelman |
|---|---|
| Architecture | source all |
| Distribution | unstable |
| Date | Thu, 05 Feb 2026 19:22:25 -0600 |
| Source | golang-github-charlievieth-strcase |
| Version | 0.0.5-1 |
.dsc
| Section | golang |
|---|---|
| Priority | optional |
| Component | main |
| Package-List | golang-github-charlievieth-strcase-dev deb golang optional arch=all |
debian/copyright
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Source: https://github.com/charlievieth/strcase Upstream-Name: strcase Upstream-Contact: Charlie Vieth <charlie.vieth@gmail.com> Files: * Copyright: 2022 Charlie Vieth <charlie.vieth@gmail.com> License: Expat Files: debian/* Copyright: 2026 Stephen Gelman <ssgelm@debian.org> License: Expat Comment: Debian packaging is licensed under the same terms as upstream License: Expat Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.