https://github.com/piotrmurach/strings-ansi
Handle ANSI escape codes in strings
https://github.com/piotrmurach/strings-ansi
ansi rubygem strings strip-ansi
Last synced: 5 months ago
JSON representation
Handle ANSI escape codes in strings
- Host: GitHub
- URL: https://github.com/piotrmurach/strings-ansi
- Owner: piotrmurach
- License: mit
- Created: 2018-08-25T20:12:28.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-06-30T22:49:07.000Z (over 2 years ago)
- Last Synced: 2025-05-05T13:45:20.297Z (8 months ago)
- Topics: ansi, rubygem, strings, strip-ansi
- Language: Ruby
- Size: 36.1 KB
- Stars: 20
- Watchers: 2
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Strings::ANSI
[][gem]
[][gh_actions_ci]
[][appveyor]
[][codeclimate]
[][coverage]
[][inchpages]
[gem]: http://badge.fury.io/rb/strings-ansi
[gh_actions_ci]: https://github.com/piotrmurach/strings-ansi/actions?query=workflow%3ACI
[appveyor]: https://ci.appveyor.com/project/piotrmurach/strings-ansi
[codeclimate]: https://codeclimate.com/github/piotrmurach/strings-ansi/maintainability
[coverage]: https://coveralls.io/github/piotrmurach/strings-ansi?branch=master
[inchpages]: http://inch-ci.org/github/piotrmurach/strings-ansi
> Handle ANSI escape codes in strings.
**Strings::ANSI** provides ANSI handling component for [Strings](https://github.com/piotrmurach/strings).
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'strings-ansi'
```
And then execute:
$ bundle
Or install it yourself as:
$ gem install strings-ansi
## Contents
* [1. Usage](#1-usage)
* [2. API](#2-api)
* [2.1 ansi?](#21-ansi)
* [2.2 only_ansi?](#22-only_ansi)
* [2.3 sanitize](#23-sanitize)
* [3. Extending String class](#3-extending-string-class)
## Usage
The `Strings::ANSI` is a module that can check if a string has ANSI escape codes:
```ruby
Strings::ANSI.ansi?("\e[32mHello\e[0m")
# => true
```
It can also check if a string consists of only ANSI codes:
```ruby
Strings::ANSI.only_ansi?("\e[32mHello\e[0m")
# => false
```
Finally, you can remove any ANSI codes from a string:
```ruby
Strings::ANSI.sanitize("\e[32mHello\e[0m")
# => "Hello"
```
## 2. API
### 2.1 ansi?
To check if a string includes ANSI escape codes use `ansi?` like so:
```ruby
Strings::ANSI.ansi?("\e[33;44mfoo\e[0m")
# => true
```
### 2.2 only_ansi?
To check if a string includes only ANSI escape codes use `only_ansi?`:
```ruby
Strings::ANSI.only_ansi?("\e[33;44mfoo\e[0m")
# => false
```
### 2.3 sanitize
To remove ANSI codes from a string use `sanitize`:
```ruby
Strings::ANSI.sanitize("\e[0;33;49mHello\e[0m")
# => Hello
```
## 3. Extending String class
Though it is highly discouraged to pollute core Ruby classes, you can add the required methods to `String` class by using refinements.
For example, if you wish to only extend strings with `sanitize` method do:
```ruby
module MyStringExt
refine String do
def sanitize
Strings::ANSI.sanitize(self)
end
end
end
```
This will make `sanitize` method available for any strings where refinement is applied:
```ruby
using MyStringExt
string.sanitize("\e[32mHello\e[0m")
# => Hello
```
Alternatively, if you want to include all the **Strings::ANSI** methods:
```ruby
require 'strings/ansi/extensions'
using Strings::ANSI::Extensions
```
## Development
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/piotrmurach/strings-ansi. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
## License
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
## Code of Conduct
Everyone interacting in the Strings::ANSI project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/piotrmurach/strings-ansi/blob/master/CODE_OF_CONDUCT.md).
## Copyright
Copyright (c) 2018 Piotr Murach. See LICENSE for further details.