Swift-Splits a string into an array (splits a string into an array of strings)

Source: Internet
Author: User

In Swift, if you need to split (split) a string into a string array based on a particular delimiter, there are usually two ways to do this:


1, using the Componentsseparatedbystring () method
12345 letstr = "北京、上海、深圳、香港"print("原始字符串:\(str)") letsplitedArray = str.componentsSeparatedByString("、")print("拆分后的数组:\(splitedArray)")



2, using the Characters.split () method

12345 let str = " Beijing, Shanghai, Shenzhen, Hong Kong " print ( "raw string: \ (str)" )  let Splitedarray = str.characters.split{$0 = = }. map ( string init ) print ( Code class= "Swift string" "The array after split: \ (Splitedarray)" )

Swift-Splits a string into an array (splits a string into an array of strings)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.