Extraindo Dados de Códigos PHP

0

Estou buscando dados de um software de terceiros na forma de CSV; enquanto os dados restantes são baixados corretamente; enquanto há uma coluna que retorna códigos PHP. Este código contém informações úteis e agora quero que isso esteja em diferentes colunas do Excel.

Por favor, veja o código abaixo:

<table border="0" cellpadding="0" cellspacing="0" width="622">
<colgroup><col style="mso-width-source:userset;mso-width-alt:4096;width:84pt" width="112">
    <col style="mso-width-source:userset;mso-width-alt:2084;width:43pt" width="57">
    <col style="mso-width-source:userset;mso-width-alt:4827;width:99pt" width="132">
    <col style="mso-width-source:userset;mso-width-alt:2560;width:53pt" width="70">
    <col style="mso-width-source:userset;mso-width-alt:5961;width:122pt" width="163">
    <col style="mso-width-source:userset;mso-width-alt:3218;width:66pt" width="88">
</colgroup>
<tbody>
    <tr style="height:15.0pt" height="20">
        <td class="xl66" style="height:15.0pt;width:84pt" height="20" width="112">16</td>
        <td class="xl66" style="border-left:none;width:43pt" width="57">2014-1</td>
        <td class="xl68" style="border-left:none;width:99pt" width="132">MBA-(EL)</td>
        <td class="xl67" style="border-left:none;width:53pt" width="70">1st Set</td>
        <td class="xl66" style="border-left:none;width:122pt" width="163">Adora Larissa D'mello</td>
        <td class="xl68" style="border-left:none;width:66pt" width="88">GGN3163780</td>
    </tr>
    <tr style="height:15.0pt" height="20">
        <td class="xl66" style="height:15.0pt;border-top:none" height="20">34</td>
        <td class="xl66" style="border-top:none;border-left:none">2014-1</td>
        <td class="xl68" style="border-top:none;border-left:none">MBA-(EL)</td>
        <td class="xl67" style="border-top:none;border-left:none">1st Set</td>
        <td class="xl66" style="border-top:none;border-left:none">Ramizraj Rashid Shaikh</td>
        <td class="xl68" style="border-top:none;border-left:none">GGN3163781</td>
    </tr>
    <tr style="height:15.0pt" height="20">
        <td class="xl66" style="height:15.0pt;border-top:none" height="20">38</td>
        <td class="xl66" style="border-top:none;border-left:none">2014-1</td>
        <td class="xl68" style="border-top:none;border-left:none">MBA-(EL)</td>
        <td class="xl67" style="border-top:none;border-left:none">1st Set</td>
        <td class="xl66" style="border-top:none;border-left:none">Girish V</td>
        <td class="xl68" style="border-top:none;border-left:none">GGN3163782</td>
    </tr>
    <tr style="height:15.0pt" height="20">
        <td class="xl66" style="height:15.0pt;border-top:none" height="20">39</td>
        <td class="xl66" style="border-top:none;border-left:none">2014-1</td>
        <td class="xl68" style="border-top:none;border-left:none">MBA-(EL)</td>
        <td class="xl67" style="border-top:none;border-left:none">1st Set</td>
        <td class="xl66" style="border-top:none;border-left:none">Greatful S P</td>
        <td class="xl68" style="border-top:none;border-left:none">GGN3163783</td>
    </tr>
    <tr style="height:15.0pt" height="20">
        <td class="xl66" style="height:15.0pt;border-top:none" height="20">41</td>
        <td class="xl66" style="border-top:none;border-left:none">2014-1</td>
        <td class="xl68" style="border-top:none;border-left:none">MBA-(EL)</td>
        <td class="xl67" style="border-top:none;border-left:none">1st Set</td>
        <td class="xl66" style="border-top:none;border-left:none">Susanta Kumar Mallick</td>
        <td class="xl68" style="border-top:none;border-left:none">GGN3163784</td>
    </tr>
</tbody>
</table>

Esse código contém cinco linhas de informações com seis campos, ou seja, número de rolo, lote, curso, semestre, nome e ID exclusivo.

Eu só quero converter esse código no Excel para que eu possa ver os dados abaixo em colunas diferentes:

16    2014-1    MBA-(EL)    1st Set    Adora Larissa D'mello     GGN3163780
34    2014-1    MBA-(EL)    1st Set    Ramizraj Rashid Shaikh    GGN3163781
38    2014-1    MBA-(EL)    1st Set    Girish V                  GGN3163782
39    2014-1    MBA-(EL)    1st Set    Greatful S P              GGN3163783
41    2014-1    MBA-(EL)    1st Set    Susanta Kumar Mallick     GGN3163784

Eu sinto muito, eu sou um novato. Por favor, perdoe-me por quaisquer erros em tornar isso compreensível.

Já testei o texto na coluna, mas sempre que tento fazer isso, o código acima cria apenas três colunas e exclui os dados restantes (isso pode ser devido a limitações de dados por célula), em que os dados que eu queria converter na verdade é deletado.

Qualquer ajuda será apreciada.

    
por user3098030 17.12.2013 / 07:55

1 resposta

0

renomeie o arquivo php para HTML ou arraste-o para um navegador. você verá a mesa. basta copiá-lo e colá-lo no Excel.

    
por 18.12.2013 / 10:10