You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
-
# Strings
1
+
# StringExtension
2
2
A string processing library for the C# programming language. It provides features to manipulate and transform strings in a simple and efficient way. The library is open-source and provided with unit tests and performance tests. It is designed to be easily integrated into your existing projects. Feel free to contribute to the project with ideas or development expertise.
3
+
3
4
## Features
4
5
5
6
- RemoveCharacters - removes the specified characters from a string
@@ -12,6 +13,14 @@ A string processing library for the C# programming language. It provides feature
12
13
- RemoveDuplicateCharacters - remove duplicate characters from a given string.
13
14
- ConvertToCamelCase - converts a given string to camel case.
14
15
16
+
## Installation
17
+
18
+
Install StringExtension using the following NuGet command
19
+
```bash
20
+
nuget install StringExtension
21
+
```
22
+
23
+
15
24
## Running Tests
16
25
- The unit tests are [here](https://github.com/Antyss77/Strings/blob/master/StringsTests/StringsTests.cs)
17
26
- The performance tests are [here](https://github.com/Antyss77/Strings/blob/master/StringsTests/StringsPerf.cs)
0 commit comments