Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ottorinobruni authored Sep 13, 2023
1 parent 55bb76e commit 787ecd0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,16 +76,19 @@ TextCase.Convert("You talking to me?", Case.SnackCase);
TextCase.Convert("You talking to me?", Case.HashtagCase);
"You talking to me?".ToHashtagCase();
// Text, Words, Letters and Sentences Count
// Text Count
TextCase.GetTextCount("You talking to me?");
"You talking to me?".GetTextCount();
// Words Count
TextCase.GetWordsCount("You talking to me?");
"You talking to me?".GetWordsCount();
// Letters Count
TextCase.GetLettersCount("You talking to me?");
"You talking to me?".GetLettersCount();
// Sentences Count
TextCase.GetSentencesCount("You talking to me?");
"You talking to me?".GetSentencesCount();
```
Expand Down

0 comments on commit 787ecd0

Please sign in to comment.