J
Jordi Rico
Hi,
I know I can split a string into an array doing this:
Dim s As String()=Regex.Split("One-Two-Three","-")
So I would have:
s(0)="One"
s(1)="Two"
s(2)="Three"
The problem is, I am receiving some kind of data this way:
"*One#*Two#*Three#", it is, every word starts with "*" and ends with
"#"...
Is there any way of using Regex to split it like the previous example??
Thanks in advance
I know I can split a string into an array doing this:
Dim s As String()=Regex.Split("One-Two-Three","-")
So I would have:
s(0)="One"
s(1)="Two"
s(2)="Three"
The problem is, I am receiving some kind of data this way:
"*One#*Two#*Three#", it is, every word starts with "*" and ends with
"#"...
Is there any way of using Regex to split it like the previous example??
Thanks in advance