Given the following sentence:

The is 10. way of doing this. And this is 43. street.

I want preg_split to give this:

Array (
 [1] => "This is 10. way of doing this"
 [2] => "And this is 43. street"
)

I am using:

preg_split("/[^\d+]\./i",$sentence)

But this gives me:

Array (
 [1] => "This is 10. way of doing thi"
 [2] => "And this is 43. stree"
)

As you can see, last charachter of sentence is disappeared. I know why this happens, but I don't know how to prevent it from happening. Any ideas? Can lookaheads and lookbehinds help here? I am not really familiar with those.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You want to use a negative assertion for that:

preg_split("/(?<!\d)\./i",$sentence)

The difference is that [^\d]+ would become part of the match, and thus split would remove it. The (?! assertion is also matched, but is "zero-width", meaning it does not become part of the delimiter match, and thus won't be thrown away.

link|improve this answer
1  
I think you have to use negative lookbehind and not a negative lookahead i.e. /(?<!\d)\./ Negative lookahead would fail to work according to OP's requirements. – Narendra Yadala Nov 18 '11 at 4:32
You're right. Thanks! Looking at the preceding character was the intention here. – mario Nov 18 '11 at 4:37
feedback

Your Answer

 
or
required, but never shown

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