Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix formatting bug in README.md and utf-8 convert because German "Umlauts" #51

Merged
merged 1 commit into from
Oct 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ The ```Convert()``` extension methods also provide overloads to provide a custom
- **```IsTimeEqual```** Determines if the time part of two ```DateTime``` values are equal.
- **```IsToday```** Determines if a date is ```DateTime.Today```.
- **```IsWeekday```** Determines if a ```DateTime``` or ```DayOfWeek``` is a weekday.
- **```IsWeekend```**Determines if a ```DateTime``` or ```DayOfWeek``` is a weekend.
- **```IsWeekend```** Determines if a ```DateTime``` or ```DayOfWeek``` is a weekend.
- **```Midnight```** Gets a ```DateTime```representing midnight on a specified date.
- **```NextMonth```** Gets the next month.
- **```Noon```** Gets a ```DateTime``` representing noon on a specified date.
Expand Down Expand Up @@ -199,7 +199,7 @@ The numeric extensions methods are available for the following primitives: ```by
- **```RemoveSpaces```** Removes all whitespace (not line endings, etc.) from a string.
- **```RemoveSpecialCharacters```** Removes all special characters from a string.
- **```Repeat```** Repeats a string value as provided by the repeat count.
- **```ReplaceDiacritics```** Replaces all diacritical marks with an ascii representation, fe. '' to 'u'.
- **```ReplaceDiacritics```** Replaces all diacritical marks with an ascii representation, fe. 'ü' to 'u'.
- **```ReplaceWithEmpty```** Replaces all occurrences of a string in an input string with ```string.Empty```.
- **```Reverse```**Reverses the a string.
- **```Right```** Gets a substring of a string from end of the string.
Expand Down