I store values that i save through a form in a database column named 'Properties' like:
value1#||#value2#||#value3#||#value4
The question is how to retrieve for example 'value2' from this string when using 'For Each row As DataRow In table.Rows'.
Using 'row("Properties")
obviously returns: value1#||#value2#||#value3#||#value4
.
How to construct something with a split function to retrieve the specific value (ex. value2)?
Thanks in advance!