I'm trying to use either split, preg_split, or explode to parse the following data into an array so that I can easily print and modify the data:

28782188    /var/opt

When I run

print_r(preg_split('/ /', $input));

All I get is

Array ( [0] => 28782796 /var/opt )

Is there a way to make php split with the whitespace that I'm getting from my du calls?

link|improve this question
have you tried explode(' ',$input);? – ianbarker Aug 30 '11 at 15:21
feedback

4 Answers

up vote 4 down vote accepted

I think you want

preg_split('/\s+/',$input);

To split by any white-space character - du seperates with tabs (\t) if I remember right, although don't quote me on that...

EDIT Changed regex to one that works...

link|improve this answer
This is the output I got: Array ( [0] => [1] => [2] => [3] => [4] => [5] => [6] => [7] => [8] => [9] => [10] => [11] => [12] => [13] => [14] => [15] => [16] => ) – Paul Aug 30 '11 at 15:23
Change the regular expression to /\S+/ – PMV Aug 30 '11 at 15:26
@Paul try the updated version (lifted straight off the examples on the preg_split() manual page) – DaveRandom Aug 30 '11 at 15:27
Beautiful, works with preg_split('/[\s,]+/',$input); Thanks so much! – Paul Aug 30 '11 at 15:28
@Paul note that it will also split by commas, you may want to the remove the comma from the character class... I have just edited above again. – DaveRandom Aug 30 '11 at 15:29
show 4 more comments
feedback
<?php 
  $value = '28782188 /var/opt';
  $values = array();

  //du might separate size and directory with **multiple** space/tabs
  preg_match_all('/\w*\S[\w\/]*/', $value, $values, PREG_PATTERN_ORDER);

  print_r($values);
  // outputs: Array ( [0] => '28782188', [1] => '/var/opt' )
?>
link|improve this answer
Output: Array ( [0] => [1] => [2] => [3] => [4] => ) – Paul Aug 30 '11 at 15:25
Damn let me test it better, i didn't test after the edit. – Clement Herreman Aug 30 '11 at 15:28
@Paul: tested and working. – Clement Herreman Aug 30 '11 at 15:31
@ Clement, see DaveRandom's post for a simpler way. – Paul Aug 30 '11 at 15:33
feedback

Try print_r(explode(' ', $input)); to break input over whitespace.

link|improve this answer
Still getting: Array ( [0] => 28792516 /var/opt ) – Paul Aug 30 '11 at 15:22
Try can exploding over '\t' instead – PMV Aug 30 '11 at 15:26
That didn't work either, DaveRandom found a solution that works though. – Paul Aug 30 '11 at 15:34
feedback

Just use explode...

print_r(explode(' ', $input));
link|improve this answer
That was the first trick I tried. DaveRandom ended up finding a solution. – Paul Aug 30 '11 at 15:33
feedback

Your Answer

 
or
required, but never shown

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