簡體   English   中英

如何將逗號分隔的字符串拆分為數組並再次按冒號拆分該數組?

[英]How can I split a comma delimited string into an array and again split that array by colon?

我有一個字符串,用逗號分隔。 我用explode用逗號分隔它,這給了我作為數組的結果。 在那個數組中,我有需要用:分隔的數據。 我怎樣才能做到這一點? 下面是字符串和輸出。

細繩:

$ing= 'coconut water :3-4 cups, coconut flesh : ½ cup, tea :4 tablespoon, Ice cubes :24-32, Lemon juice :4 tablespoon, Honey :8 tablespoon'
$output = explode(',', $ing);

輸出:

Array ( [0] => coconut water :3-4 cups 
    [1] => coconut flesh : ½ cup 
    [2] => tea :4 tablespoon 
    [3] => Ice cubes :24-32 
    [4] => Lemon juice :4 tablespoon 
    [5] => Honey :8 tablespoon )

現在,我想要單獨的椰子水:3-4 杯冒號。

$ing= 'coconut water :3-4 cups, coconut flesh : ½ cup, tea :4 tablespoon, Ice cubes :24-32, Lemon juice :4 tablespoon, Honey :8 tablespoon'
$output1 = explode(',', $ing);
$output=array();
foreach($output1 as $item){
  $output[]=explode(':', $item);
}

輸出:

Array
(
[0] => Array
    (
        [0] => coconut water 
        [1] => 3-4 cups
    )

[1] => Array
    (
        [0] => 
coconut flesh 
        [1] =>  ½ cup
    )

[2] => Array
    (
        [0] => 
tea 
        [1] => 4 tablespoon
    )

[3] => Array
    (
        [0] => 
Ice cubes 
        [1] => 24-32
    )

[4] => Array
    (
        [0] => 
Lemon juice 
        [1] => 4 tablespoon
    )

[5] => Array
    (
        [0] => 
 Honey 
        [1] => 8 tablespoon
    )

)

期望輸出:

<tr>
  <td>coconut water </td>
  <td>3-4 cups</td>
</tr>
<tr>
  <td>coconut flesh</td>
  <td>½ cup</td>
</tr>
<tr>
  <td>tea </td>
  <td>4 tablespoon</td>
</tr>
<tr>
  <td>Ice cubes</td>
  <td>24-32</td>
</tr>
<tr>
  <td>Lemon juice</td>
  <td>4 tablespoon</td>
</tr>
<tr>
  <td>Honey</td>
  <td>8 tablespoon</td>
</tr>

請嘗試:

$ing= 'coconut water :3-4 cups, coconut flesh : ½ cup, tea :4 tablespoon, Ice cubes :24-32, Lemon juice :4 tablespoon, Honey :8 tablespoon'
$output1 = explode(',', $ing);
$output=array();
foreach($output1 as $item){
    $output[]=explode(':', $item);
}

顯示段:

foreach($output as $row){
   //insert a new row here:
   echo '<tr>';
      //fill cells in row:
      echo '<td>'.$row[0].'</td>';
      echo '<td>'.$row[1].'</td>';
   //close the row:
   echo '</tr>';
}

請試試這個..這可能有用:)

$ing= 'coconut water :3-4 cups, coconut flesh : ½ cup, tea :4 tablespoon, Ice cubes :24-32, Lemon juice :4 tablespoon, Honey :8 tablespoon';
$output = explode(',', $ing);

function getBetween($content,$start,$end) {
    $r = explode($start, $content);

    if (isset($r[1])){

        $r = explode($end, $r[1]);
        return $r[0];

    }
    return '';
}


    foreach ($output as $value) {
        # code...

            $value = $value.'_!!_';
            $data = getBetween($value,':','_!!_');
            echo $data = str_replace('_!!_','',$data);
            echo '<br>';
    }
$ing = 'coconut water :3-4 cups, coconut flesh : ½ cup, tea :4 tablespoon, Ice cubes :24-32, Lemon juice :4 tablespoon, Honey :8 tablespoon';

$lines = explode( ',', $ing );

foreach( $lines as $line ) {
    $item = explode( ':', $line );
    $tablerow[] = '<td>' . $item[0] . '</td><td>' . $item[1] . '</td>';
}

echo '<table><tr>' . implode( '</tr><tr>', $tablerow ) . '</tr></table>';

如果您在使用explode 之后迭代您擁有的數組,您還可以使用explode 用冒號分隔值(數組的值)。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM