Class HelperParser
Inheritance
↳ object
↳ HelperParser
Inherited Members
Equals(object)
Equals(object, object)
GetHashCode()
GetType()
MemberwiseClone()
ReferenceEquals(object, object)
ToString()
Namespace: OptimaJet.Workflow.Core.Helpers
Assembly: OptimaJet.Workflow.Core.dll
Syntaxpublic static class HelperParser
Methods
SplitWithTrim(string, string[])
Declarationpublic static List<string> SplitWithTrim(string text, string[] delimiter)
Type | Name | Description |
---|---|---|
string | text | |
System.String[] | delimiter |
Type | Description |
---|---|
List<string> |
SplitWithTrim(string, string)
Declarationpublic static List<string> SplitWithTrim(string text, string delimiter)
Type | Name | Description |
---|---|---|
string | text | |
string | delimiter |
Type | Description |
---|---|
List<string> |
Parse2xNList(string, string[], string[])
Declarationpublic static List<(string, string)> Parse2xNList(string text, string[] outerDelimiters, string[] innerDelimiters)
Type | Name | Description |
---|---|---|
string | text | |
System.String[] | outerDelimiters | |
System.String[] | innerDelimiters |
Type | Description |
---|---|
List<(string, string)> |
Parse2xNList(string, string, string)
Declarationpublic static List<(string, string)> Parse2xNList(string text, string outerDelimiter, string innerDelimiter)
Type | Name | Description |
---|---|---|
string | text | |
string | outerDelimiter | |
string | innerDelimiter |
Type | Description |
---|---|
List<(string, string)> |
Parse2xNxNList(string, string, string, string, string)
Declarationpublic static List<(List<string>, List<string>)> Parse2xNxNList(string text, string outerDelimiter, string innerDelimiter, string leftDelimiter, string rightDelimiter)
Type | Name | Description |
---|---|---|
string | text | |
string | outerDelimiter | |
string | innerDelimiter | |
string | leftDelimiter | |
string | rightDelimiter |
Type | Description |
---|---|
List<(List<string>, List<string>)> |
Join(string, IEnumerable<string>)
Declarationpublic static string Join(string separator, IEnumerable<string> values)
Type | Name | Description |
---|---|---|
string | separator | |
IEnumerable<string> | values |
Type | Description |
---|---|
string |
CheckMask(string, string)
Declarationpublic static bool CheckMask(string Source, string maskFiles)
Type | Name | Description |
---|---|---|
string | Source | |
string | maskFiles |
Type | Description |
---|---|
bool |
SplitCamelCasing(string)
Declarationpublic static List<string> SplitCamelCasing(string source)
Type | Name | Description |
---|---|---|
string | source |
Type | Description |
---|---|
List<string> |
CamelCasingToPhrase(string, bool)
Declarationpublic static string CamelCasingToPhrase(string source, bool firstBig = true)
Type | Name | Description |
---|---|---|
string | source | |
bool | firstBig |
Type | Description |
---|---|
string |