Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ottorinobruni authored May 25, 2024
1 parent ab2d95e commit 2b1383e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Key Features
- Wide Range of Conversions: Transform text into 19 different cases including UpperCase, LowerCase, TitleCase, CamelCase, PascalCase, Base64 encoding/decoding, and more.
- Text Analysis: Easily count characters, words, letters, and sentences within your text.
- Easy Integration: Simple and intuitive API that integrates seamlessly with your .NET applications.
- List Available Conversions: Easily retrieve all supported text cases programmatically.

Available Conversions
- UpperCase: Converts text to uppercase.
Expand Down Expand Up @@ -137,6 +138,18 @@ TextCase.GetParagraphsCount("You talking to me?");
```

**GetAllCases**
The GetAllCases method has been introduced to allow users to retrieve a complete list of all available text case conversions.
```cscharp
var allCases = TextCase.GetAllCases();
foreach (var textCase in allCases)
{
Console.WriteLine(textCase);
}
```

## Get it on NuGet:

```cscharp
Expand Down

0 comments on commit 2b1383e

Please sign in to comment.