Forum Discussion
Koemets
3 years agoContributor
Do you just need to replace "|" with ","? You you don't know how to loop thru the delimited list?
it's a vb for both. String.Replace ("old value","new value") and for the array you should go with array syntax:
Dim arrValues As String() = text2.Split(New Char() {"|"c})
Then loop thru it as For each val in arrValues...
Related Content
- 3 years ago
- 11 months ago
- 12 months ago
- 2 months ago