replacingOccurrencesを使用する。
ofに置換前、withに置換後の文字列を設定する。
import Foundation
// 置換前の文字列
var str: String = "ABC"
// 置換を行う
var newStr = str.replacingOccurrences(of: "A", with: "4")
// "4BC"と出力される。
print(newStr)
Go to list of users who liked
More than 1 year has passed since last update.
replacingOccurrencesを使用する。
ofに置換前、withに置換後の文字列を設定する。
import Foundation
// 置換前の文字列
var str: String = "ABC"
// 置換を行う
var newStr = str.replacingOccurrences(of: "A", with: "4")
// "4BC"と出力される。
print(newStr)
Register as a new user and use Qiita more conveniently
Go to list of users who liked