ParametersValuePart Method
Gets the information about a value in a parameter composed of several values separated by a character.
Namespace: Aliquo.CoreAssembly: Aliquo.Core (in Aliquo.Core.dll) Version: 5.0.9179.22651
public static string ValuePart(
string valueParameter,
int index,
char separator = ';'
)
Public Shared Function ValuePart (
valueParameter As String,
index As Integer,
Optional separator As Char = ";"C
) As String
- valueParameter String
- Complete parameter content.
- index Int32
- Value position (starts from position 1).
- separator Char (Optional)
- Separator character used to separate parameter values.
StringString with the value contained in the indicated position of a composite parameter
Example: GetValuePart("value1;value2;value3", 2) --> value 2