I've got a string with the format of:
blockh->127.0.0.1 testlocal.de->127.0.0.1 testlocal2.com
Now I need to seperate the elements, best way would be a string array I think. I would need to get only these elements seperated:
127.0.0.5 somerandompage.de
127.0.0.1 anotherrandompage.com
How to split and filter the array to get only these elements?
Using the .Filter() Methode doesn't to the job.