Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Let say I have values like this

Apple(100)

Orange(300)

Pineapple(10)

Grape(50)

Banana(1000)

If I am going to remove (xx) from each string,what do I need to do in Swift?Any Help Please? I can find only methods that can cut string with range.But,I am having problem with that.

What i want was

Apple

Orange

...

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
222 views
Welcome To Ask or Share your Answers For Others

1 Answer

You can do it this way:

var string = "Apple(100)"                               //"Apple(100)" 
let newStr = string.componentsSeparatedByString("(")    //["Apple", "100)"]
newStr[0]                                               //"Apple"

And if you want to modify whole array then you can use this function:

func seprateString(arr: [String]) -> [String] {
    var newArr = [String]()
    for item in arr {
        let newStr = item.componentsSeparatedByString("(")
        newArr.append(newStr[0])
    }
    return newArr
}


let fruitArr = ["Apple(100)", "Orange(300)", "Pineapple(10)", "Grape(50)", "Banana(1000)"]
let newArrayForFruit = seprateString(fruitArr)

OutPut will be:

["Apple", "Orange", "Pineapple", "Grape", "Banana"]

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...