Skip to content

A small library to give some prettiness to your project strings!

License

Notifications You must be signed in to change notification settings

fewlaps/PrettyStrings

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status Coverage Status Download

PrettyStrings

PrettyStrings is a small library to give some prettiness to your project strings!

Have you ever worked with an API that gives you strings like:

"HOLIDAYS" or "holidays" when you expected something more ready to use like "Holidays"?

or an uppercase name like "JOHN DOE" when you wanted "John Doe"?

We've been in those situations and that's why we developed this small library!

Oh, and we developed it using TDD!

The Sample

Here's a short code to show you how to use it:

String uglyString = "JUST A SAMPLE STRING";

PrettyString prettyString = new PrettyString();

String result = prettyString.capitalizeFirstChar(uglyString); // => "Just a sample string"

String otherResult = prettyString.capitalizeAllFirstChars(uglyString); // => "Just A Sample String"

Download

  • Grab via Gradle
repositories { jcenter() }

compile 'com.fewlaps.prettystrings:fewlaps-prettystrings:1.1'
  • Grab via Maven:
<repository>
  <id>jcenter</id>
  <url>http://jcenter.bintray.com</url>
</repository>

<dependency>
  <groupId>com.fewlaps.prettystrings</groupId>
  <artifactId>fewlaps-prettystrings</artifactId>
  <version>1.1</version>
  <type>pom</type>
</dependency>

LICENSE

The MIT License (MIT)

Copyright (c) 2015 Fewlaps

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.

About

A small library to give some prettiness to your project strings!

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages