Provides helper extensions for the string type.
Removes the hint prefix from value. A hint prefix starts with $( and end with ).
public String RemoveHintPrefix(value)The value without the prefix.
| Name | Type | Summary |
|---|---|---|
| value | String | Value to process. |
Splits a string at the NewLine character and trimms the end or each string.
public String[] SplitNewLine(value)An string array of splited values.
| Name | Type | Summary |
|---|---|---|
| value | String | Value to split. |
Converts value to an argument name.
public String ToArgumentName(value)Converted value.
| Name | Type | Summary |
|---|---|---|
| value | String | Value to convert. |
Converts value from a column name to a camel case name.
public String ToCamelCaseName(value)Converted value.
| Name | Type | Summary |
|---|---|---|
| value | String | Value to convert. |
Converts value to a column name.
public String ToColumnName(value)Converted value.
| Name | Type | Summary |
|---|---|---|
| value | String | Value to convert. |
Converts value to a field name.
public String ToFieldName(value)Converted value.
| Name | Type | Summary |
|---|---|---|
| value | String | Value to convert. |
In this document