NetTalk Central

Author Topic: String Theory Split  (Read 2130 times)

astahl

  • Sr. Member
  • ****
  • Posts: 308
    • View Profile
    • Email
String Theory Split
« on: July 27, 2016, 05:02:14 AM »
Hi,

I need to split a string that has character 10 as the boundary. Can this be done?

Ashley

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11193
    • View Profile
Re: String Theory Split
« Reply #1 on: July 27, 2016, 05:07:58 AM »
yes

str.split('<10>')

cheers
Bruce

astahl

  • Sr. Member
  • ****
  • Posts: 308
    • View Profile
    • Email
Re: String Theory Split
« Reply #2 on: July 27, 2016, 05:11:29 AM »
Thanks Bruce

Ashley