My goal is to slice a string in Swift, for example
var str = "Tower Capital, 99822, Building 2399"
My goal is to slice only Tower Capital
, technically what I want is to slice up to the ,
but not included the comma.
So my goal is to get only "Tower Capital"