Good Afternoon,

How do you insert a tab in a xml document.

thank you

Recommended Answers

All 3 Replies

Where do you want the tab?

Do you have an example of the before and after?

Here is an example of an before and after

Before example
<?xml version="1.0" encoding="UTF-8"?>

<FACULTY>

    <PROFESSOR>
        <NAME>Dr. Pearl Brazier</NAME>
        <TITLE>CMPE Program Director / CS Undergraduate Coordinator</TITLE>
        <TEL>(956) 665 - 3455</TEL>
        <EMAIL>brazier@utpa.edu</EMAIL>
    </PROFESSOR>


This is an after example that I have implemented, but I think there's a better way to do it

    <PROFESSOR>
        <NAME>Dr. Pearl Brazier</NAME>
        <TITLE><![CDATA[CMPE Program Director <br /> &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;CS Undergraduate Coordinator ]]></TITLE>
        <TEL>(956) 665 - 3455</TEL>
        <EMAIL>brazier@utpa.edu</EMAIL>
    </PROFESSOR>

Not entirely sure of another way to do it really apart from if /t works.

Work has got stupidly busy for me so dont have time to look into it in the forseeable future

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.