0

'如果数据是所有选项卡不打印行'怎么办?

如果我不想打印只包含制表符的行,我应该如何更改我的代码?

我正在考虑以某种方式使用 preg_match ,即preg_match('#(/\t+/)#',$lines[$i])

但这会破坏我的代码,因为它将制表符分隔的文件转换为表格,删除开始<tr>标记使其以这种方式工作(没有制表符行),但我不能在<tr>那时放置一个类。

PHP:

    echo "<table id='schedule_table'>"; 

//split into array by return\linefeed
$lines=explode("\r\n",$file);
//replace digits with class
$lines=preg_replace('#(\d+)#','<span class="table_digit">$1</span>',$lines);
//loop through rows
for($i=0;$i<count($lines);$i++) 
{ 
//if not blank then print row
if($lines[$i]!=""&&$lines[$i]!=" "&&$lines[$i]!=null)
    {
    echo "<tr class='schedule_row' value='$lines[$i]'>";
    //if row is 0 cell type is header
    $cell_type="td";
    $cell_class="schedule_cell";
    if($i==0)
    {
        $cell_type="th";
        $cell_class="schedule_hcell";
    }
    //end if

    //split into array by tabs
    $items=explode("\t",$lines[$i]);
    //loop through cells 
    for($j=0;$j<count($items);$j++) 
    { 
        //if not blank then print cell
        if($items[$j]!=""&&$items[$j]!=" ")
            {
            echo "<$cell_type class=$cell_class>".$items[$j]."</$cell_type>"; 
            }
    } 
    echo "</tr>"; 
    }
} 
echo "</table>"; 
4

1 回答 1

4

锚定你的正则表达式:

preg_match('/^\t+$/', $line)

在您的代码中使用此正则表达式:

if ($lines[$i]!="" && $lines[$i]!=" " && !preg_match('/^\t+$/', $line[$i]))
于 2012-04-25T18:09:15.897 回答