How to remove the leading and trailing commas from a string in Swift

3 Answers

0 votes
import Foundation

var str = ",,,Swift,,"

str = str.trimmingCharacters(in: CharacterSet(charactersIn: ","))

print(str)

 
 
/*
run:
      
Swift
      
*/

 



answered Mar 6, 2025 by avibootz
0 votes
import Foundation

var str = ",,,Swift,,"

let components = str.components(separatedBy: ",")
let filteredComponents = components.filter { !$0.isEmpty }

str = filteredComponents.joined()

print(str)

 
 
/*
run:
      
Swift
      
*/

 



answered Mar 6, 2025 by avibootz
0 votes
import Foundation

func trimCharacters(in str: String, characters: String) -> String {
    return str.trimmingCharacters(in: CharacterSet(charactersIn: characters))
}

var str = ",,,Swift,,"

str = trimCharacters(in: str, characters: ",")

print(str)

 
 
/*
run:
      
Swift
      
*/

 



answered Mar 6, 2025 by avibootz

Related questions

2 answers 121 views
1 answer 101 views
3 answers 134 views
2 answers 102 views
1 answer 102 views
...