UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

SOLVED: Help! Help! Help! Help! Help! Help! Help!

Forums > 100 Days of SwiftUI

I want your help,thank you . The question is how to get every character of a string,like.: let m="addfdg" What I want is that a,d,d,f,d,g. How should I get that? I know that I can use m【i】 to get per char in c++,c. help! Thank you .

2      

hi,

example from the String documentation:

let cafe = "Cafe\u{301} du 🌍"
print(cafe)
// Prints "Café du 🌍"
print(cafe.count)
// Prints "9"
print(Array(cafe))
// Prints "["C", "a", "f", "é", " ", "d", "u", " ", "🌍"]"

hope that helps,

DMG

3      

@delawaremathguy. Oh,you are so. clever ,benign,and happy to render help to others,thank you again.

Your answers are precise.

And if there is any help I can provide,please @ me ,I will try my best to help you,though my power may be not as powerful as other's.

2      

TAKE YOUR SKILLS TO THE NEXT LEVEL If you like Hacking with Swift, you'll love Hacking with Swift+ – it's my premium service where you can learn advanced Swift and SwiftUI, functional programming, algorithms, and more. Plus it comes with stacks of benefits, including monthly live streams, downloadable projects, a 20% discount on all books, and free gifts!

Find out more

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.