CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: preg_split help

Threaded View

  1. #1
    Join Date
    Dec 2007
    Posts
    41

    Resolved [Solved] preg_split help

    Hello, I've read a couple tutorials on regular expressions but I just can't wrap my head around them. I am trying to split a string into an array using preg_split but so far I can't create a expression that will work.

    The type of data I would be working is like:
    Code:
    [Something][123456789][Hello]
    and I would like to split that into three separate places on an array like:
    Code:
    0 => Something
    1 => 123456789
    2 => Hello
    Anyone know how to do this?
    Last edited by Hellboyz; August 28th, 2010 at 11:19 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured