An open API service indexing awesome lists of open source software.

https://github.com/sitnikovik/stringo

Enjoy your work with strings like formatting, converting or something else
https://github.com/sitnikovik/stringo

string string-formatter string-manipulation strings

Last synced: 17 days ago
JSON representation

Enjoy your work with strings like formatting, converting or something else

Awesome Lists containing this project

README

          

# stringo

[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
[![Go Report Card](https://goreportcard.com/badge/github.com/sitnikovik/stringo)](https://goreportcard.com/report/github.com/sitnikovik/stringo)
[![GoDoc](https://godoc.org/github.com/sitnikovik/stringo?status.svg)](https://godoc.org/github.com/sitnikovik/stringo)

`stringo` is a lightweight Go library designed to extend and simplify working with strings in Go (Golang). The library currently focuses on providing utility functions for converting strings to various cases, with plans to expand functionality in the future.

## Features

- **String Case Conversion**: Convert strings to different cases such as snake_case, camelCase, and more.
- **No Dependencies**: Aside from the testing library [Testify](https://github.com/stretchr/testify), the library is self-contained with zero external runtime dependencies.
- **Lightweight**: Minimalistic and fast, designed to integrate seamlessly into your projects.

## Installation

To install the `stringo` package, use the following `go get` command:

```bash
go get -u github.com/sitnikovik/stringo