I have a string that looks like this:
let str = "One;Two;Three;Four;Five"
How do I put every value in an array
, so each value is separated with the ";" sign.
I have tried to iterate but that does not feel right. Then I also want to filter the result, for example get all values that contains the letter "o".
Any help is appreciated.