From 787ecd007e5e92d5b0882082488e796a694059de Mon Sep 17 00:00:00 2001 From: Ottorino Bruni Date: Wed, 13 Sep 2023 15:20:08 +0200 Subject: [PATCH] Update README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 88e4487..6dfb229 100644 --- a/README.md +++ b/README.md @@ -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(); ```