Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
easyextensionshelpers StringHelpers
String helpers.
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph EasyExtensions.Helpers
EasyExtensions.Helpers.StringHelpers[[StringHelpers]]
end
| Returns | Name |
|---|---|
string | CreatePseudoRandomString(...)Fast generate pseudo random string with StringHelpers.DefaultCharset and string length. |
string | CreateRandomString(...)Generate random string with StringHelpers.DefaultCharset and string length. |
string | RemoveSpaces(string comment)Remove spaces from string - trim, replace new lines and multiple spaces. |
String helpers.
publicstaticstringCreatePseudoRandomString()Fast generate pseudo random string with StringHelpers.DefaultCharset and string length.
Pseudo-random string.
publicstaticstringCreatePseudoRandomString(intlength)| Type | Name | Description |
|---|---|---|
int | length | Result string length. |
Fast generate pseudo random string with StringHelpers.DefaultCharset and specified string length.
Pseudo-random string.
publicstaticstringCreatePseudoRandomString(intlength,stringcharset)| Type | Name | Description |
|---|---|---|
int | length | Result string length. |
string | charset | Generator charset. |
Fast generate pseudo random string with specified charset and string length.
Pseudo-random string.
publicstaticstringCreateRandomString()Generate random string with StringHelpers.DefaultCharset and string length.
Really random string.
publicstaticstringCreateRandomString(intlength)| Type | Name | Description |
|---|---|---|
int | length | Result string length. |
Generate random string with StringHelpers.DefaultCharset and specified string length.
Really random string.
publicstaticstringCreateRandomString(intlength,stringcharset)| Type | Name | Description |
|---|---|---|
int | length | Result string length. |
string | charset | Generator charset. |
Generate random string with specified charset and string length.
Really random string.
publicstaticstringRemoveSpaces(stringcomment)| Type | Name | Description |
|---|---|---|
string | comment |
Remove spaces from string - trim, replace new lines and multiple spaces.
Generated withModularDoc