Online HTML To XML Converter

Input data
bfotool loadding
Output data
bfotool loadding

HTML To XML Converter helps you to convert HTML to XML online.

HTML to XML converter simplest

This free online tool lets you convert a HTML file into a XML file.Just paste your HTML in the form below and it will instantly get converted to XML No need to download or install any software. Free

Tool what is a HTML to XML converter?

This HTML to XML converter transforms HTML data and files into XML data and files. This converter allows customizing input HTML and output XML It also accepts HTML files with custom column delimiter characters and field quote characters. It supports comment lines and you can optionally ignore empty lines. You can also change how many spaces to use in the output XML indentation.

How to Convert HTML to XML?

Step 1: Select your input. Enter Data.
Step 2: Choose output options (optional) Output Options.
Step 3: Generate output.

HTML to XML converter examples

Input Data

<table>
    <tr>
        <td>pin</td>
        <td>time</td>
    </tr>
    <tr>
        <td>0001</td>
        <td>1524810082</td>
    </tr>
    <tr>
        <td>0002</td>
        <td>1524810082</td>
    </tr>
    <tr>
        <td>0003</td>
        <td>1524810082</td>
    </tr>
    <tr>
        <td>0004</td>
        <td>1524810082</td>
    </tr>
</table>

Output Data

<row-0>
    <pin>0001</pin>
    <time>1524810082</time>
</row-0>
<row-1>
    <pin>0002</pin>
    <time>1524810082</time>
</row-1>
<row-2>
    <pin>0003</pin>
    <time>1524810082</time>
</row-2>
<row-3>
    <pin>0004</pin>
    <time>1524810082</time>
</row-3>