StuceSoftware.RandomStringGenerator
1.0.2
See the version list below for details.
dotnet add package StuceSoftware.RandomStringGenerator --version 1.0.2
NuGet\Install-Package StuceSoftware.RandomStringGenerator -Version 1.0.2
<PackageReference Include="StuceSoftware.RandomStringGenerator" Version="1.0.2" />
paket add StuceSoftware.RandomStringGenerator --version 1.0.2
#r "nuget: StuceSoftware.RandomStringGenerator, 1.0.2"
// Install StuceSoftware.RandomStringGenerator as a Cake Addin #addin nuget:?package=StuceSoftware.RandomStringGenerator&version=1.0.2 // Install StuceSoftware.RandomStringGenerator as a Cake Tool #tool nuget:?package=StuceSoftware.RandomStringGenerator&version=1.0.2
StuceSoftware.RandomStringGenerator
Version 1.0.1
Authors :
Jeff Shergalis
Lakhya Jyoti Nath (ljnath)
Date : September 2020 - October 2024
Introduction
StuceSoftware.RandomStringGenerator is a library developed in C# to generate random strings of from various categories. It is fast and suports string generation of various length.
It is parameterized to generate both a single or a list of random strings.
Random strings can be of types alphabet and alphanumeric supporting all the cases viz. lower, upper and mixed.
It also supports symbol during the random string generation process. Following are the list of supported symbols:
!#$%&'()*+,-./:;<=>?@[]^_`{|}~"
It also allows you to generate random string with only a subset of symbols from the above supported list. It is an ideal use for projects such as:
- password generator
- mobile number generator
- unique-id generator
- unique filename generator
- raw data generator for data processing/parsing projects
- fake name generator etc. etc.
Features
- Supports single or multiple random string generation
- Supports random string generation from alphabet, numbers, symbols or a combination of them
- Supports customized length of randon string
- Supports random length of generated strings with a fixed max length
- Supports true unique random number generation
- Support force inclusion of strings of each type
- Supports .NET Standard 2.0 & 2.1, .NET 6.0, 8.0 & 9.0
Supported Types
- NUMBER : 0123456789
- SYMBOLS : !#$%&'()*+,-./:;<=>?@[]^_`{|}~"
- ALPHABET_LOWERCASE : abcdefghijklmnopqrstuvwxyz
- ALPHABET_UPPERCASE : ABCDEFGHIJKLMNOPQRSTUVWXYZ
- ALPHABET_MIXEDCASE : abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
- ALPHANUMERIC_LOWERCASE : abcdefghijklmnopqrstuvwxyz0123456789
- ALPHANUMERIC_UPPERCASE : ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
- ALPHANUMERIC_MIXEDCASE : abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
- ALPHABET_LOWERCASE_WITH_SYMBOLS : abcdefghijklmnopqrstuvwxyz!#$%&'()*+,-./:;<=>?@[]^_`{|}~"
- ALPHABET_UPPERCASE_WITH_SYMBOLS : ABCDEFGHIJKLMNOPQRSTUVWXYZ!#$%&'()*+,-./:;<=>?@[]^_`{|}~"
- ALPHABET_MIXEDCASE_WITH_SYMBOLS : abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!#$%&'()*+,-./:;<=>?@[]^_`{|}~"
- ALPHANUMERIC_LOWERCASE_WITH_SYMBOLS : abcdefghijklmnopqrstuvwxyz0123456789!#$%&'()*+,-./:;<=>?@[]^_`{|}~"
- ALPHANUMERIC_UPPERCASE_WITH_SYMBOLS : ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!#$%&'()*+,-./:;<=>?@[]^_`{|}~"
- ALPHANUMERIC_MIXEDCASE_WITH_SYMBOLS : abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" !#$%&'()*+,-./:;<=>?@[]^_`{|}~"
Get Started
1. Install Package
PM> Install-Package StuceSoftware.RandomStringGenerator
2. Add reference in your project
3. Call the methods in your program
using StuceSoftware.RandomStringGenerator;
// generating one random string from lowercase alphabets
string randomString = RandomString.GetString(Types.ALPHABET_LOWERCASE);
System.Console.WriteLine(randomString);
// generating 100 random string from all mixedcase alphabet, numbers and all supported symbols
List<string> randomAlphaNumbericStrings = RandomString.GetStrings(Types.ALPHANUMERIC_MIXEDCASE_WITH_SYMBOLS, 100);
foreach (string s in randomAlphaNumbericStrings)
System.Console.WriteLine(s);
// generating 200 random string from uppercase alphabet with custom symbols
List<string> randomAlphabetWithCustomSymbols = RandomString.GetStrings(Types.ALPHABET_UPPERCASE, 200, "/+*-");
foreach (string s in randomAlphabetWithCustomSymbols)
System.Console.WriteLine(s);
// generating 1000 true random strings of length 20 from uppercase alphabet with custom symbols
List<string> trueUniqueRandomStrings = RandomString.GetStrings(Types.ALPHABET_UPPERCASE, 1000, 20, false, true);
foreach (string s in trueUniqueRandomStrings)
System.Console.WriteLine(s);
// generating 100 random string of mixedcase alphanummeric with custom symbols
List<string> randomAlphabetWithCustomSymbols = RandomString.GetStrings(Types.ALPHANUMERIC_MIXEDCASE_WITH_SYMBOLS, 100, "/+*-", forceOccuranceOfEachType: true);
foreach (string s in randomAlphabetWithCustomSymbols)
System.Console.WriteLine(s);
Give a Star! ⭐️
If you find this repository useful, please give it a star. Thanks in advance !
License
Copyright © 2024 Stuce Software Solutions under the MIT License.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
-
.NETStandard 2.1
- No dependencies.
-
net6.0
- No dependencies.
-
net8.0
- No dependencies.
-
net9.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
3.0.2-prerelease.15 | 40 | 10/29/2024 |
3.0.1 | 91 | 10/23/2024 |
3.0.0-prerelease.13 | 37 | 10/23/2024 |
3.0.0-prerelease.12 | 35 | 10/22/2024 |
2.0.0 | 91 | 10/4/2024 |
2.0.0-prerelease.10 | 39 | 10/4/2024 |
1.0.3-prerelease.9 | 47 | 10/4/2024 |
1.0.2 | 99 | 10/3/2024 |
1.0.2-prerelease.7 | 45 | 10/3/2024 |
1.0.1 | 91 | 10/2/2024 |
1.0.0-prerelease.5 | 44 | 10/2/2024 |
1.0.0-prerelease.4 | 42 | 10/2/2024 |
1.0.0-prerelease.3 | 44 | 10/2/2024 |
1.0.0-prerelease.1 | 48 | 10/2/2024 |
- Fixed issue with string generation where forceOccurrenceOfEachType did not guarantee at least one character from each grouping in the resultant string.