EDITED:

need help on split Array

array example:

 array (

           [0] =>
            :some normal text
            :some long text here, and so on... sometimes 
            i'm breaking down and...
            :some normal text
            :some normal text
        )

ok, now by using

preg_split( '#\n(?!s)#' ,  $text );

i get

[0] => Array
        (
            [0] => some normal text
            [1] => some long text here, and so on... sometimes
            [2] => some normal text
            [3] => some normal text
        )

I want get this:

[0] => Array
        (
            [0] => some normal text
            [1] => some long text here, and so on... sometimes i'm breaking down and...
            [2] => some normal text
            [3] => some normal text
        )

what Regex can get the entire line and also split at line break!?

link|improve this question

2  
Doesn't sound like you want to split on newlines at all but rather TEXT: – webbiedave Apr 26 '10 at 19:49
ok, just for make things clear, i need a REGEX that donn't cut off the line but keep it fully! all other method seen here are not for me! ;-) – aSeptik Apr 26 '10 at 19:51
forget the TEXT# , just consider my Regex, it is working well, but it split also the long string, i need it to keep the long lines fully!!! – aSeptik Apr 26 '10 at 20:08
ok, i have updated once more time my question, the delimiter is a colon : what is the regex i'm finding!? ;-) – aSeptik Apr 26 '10 at 21:14
feedback

4 Answers

up vote 6 down vote accepted

Here's an example that works, even if you have a colon character embedded inside the string (but not at start of the line):

$input = ":some normal text
:some long text here, and so on... sometimes
i'm breaking: down and...
:some normal text
:some normal text";

$array = preg_split('/$\R?^:/m', $input);
print_r($array);

result:

Array
(
    [0] => some normal text
    [1] => some long text here, and so on... sometimes
           i'm breaking: down and...
    [2] => some normal text
    [3] => some normal text
)
link|improve this answer
i don't need to split TEXT: this is just an example for delimit each line!!!!!! – aSeptik Apr 26 '10 at 20:13
Ok, so, which character exactly delimits the lines? – Milan Babuškov Apr 26 '10 at 21:05
the colon! before the text! – aSeptik Apr 26 '10 at 21:34
1  
thank's Milan! i think the hardest thing, this time, for me, is to make my question clear! doh! %-) but finally we got it so thank's again! +1 and check! – aSeptik Apr 27 '10 at 8:57
feedback

"line break" is ill-defined. Windows uses CR+LF (\r\n), Linux LF (\n), OSX CR (\r) only.

There is a little-known special character \R in preg_* regular exceptions that matches all three:

preg_match('/^\R$/', "\r\n"); // 1
link|improve this answer
thank's also to you for the hint! +1 ;-) – aSeptik Apr 27 '10 at 9:07
1  
That is the best thing I have learned in a week. Thank you! – jerrygarciuh Sep 13 '11 at 20:50
I couldn't find the escape character even in the PHP manual. – svandragt Apr 10 at 11:09
feedback

file() reads a file into an array.

link|improve this answer
Thanks posting something useful, non-intuitive, and answers the needs of many similar questions. Even if it ignores the stated requirements. – SamGoody Feb 20 at 8:07
feedback
$lines = explode("\n", $text);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.