S
Sira PS
If I have an array like this
["Member", "Friends", "Hello", "Components", "Family", "Lastname"]
And I need to split this array from "Components" and get 2 arrays which
are
["Member", "Friends", "Hello"]
and
["Family", "Lastname"]
Can I do that and how?
["Member", "Friends", "Hello", "Components", "Family", "Lastname"]
And I need to split this array from "Components" and get 2 arrays which
are
["Member", "Friends", "Hello"]
and
["Family", "Lastname"]
Can I do that and how?