vote up 2 vote down star

I'm writing a program to add some code to html files

I was going to use a series of indexof and loops to find what is essentially ""X (where X is the spot im looking for)

It occurred to me that there might be a more eloquent way of doing this

does anyone have any suggestions.

what it looks like currently

<body onLoad="JavaScript:top.document.title='Abraham L Barbrow'; if (self == parent) document.getElementById('divFrameset').style.display='block';">

what it should look like when im done


<body onLoad="JavaScript:top.document.title='Abraham L Barbrow'; if (self == parent) document.getElementById('divFrameset').style.display='block';">
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-9xxxxxx-1");
pageTracker._trackPageview();
} catch(err) {}</script>
flag

66% accept rate
to clearify I want to add code after the <body stuf stuff stuff > tag – Crash893 Jul 23 at 19:49

6 Answers

vote up 5 vote down check

I'm not sure I'm understanding you, but do you mean this?

// Given an HTML document in "htmlDocument", and new content in "newContent"
string newHtmlDocument = htmlDocument.Replace("</body>", newContent+"</body>");

And it's probably obvious I don't know c#... You'd probably want to make the "body" tag case insensitive via regexps.

link|flag
Or you could use an entire DOM parser like some of the other answers. But why load extra crap if this is all you have to do? – markwatson Jul 23 at 19:39
thats exactly what i want to do but instead of add it before the end body tag </body> i want to add it after the start tag<body> the problem i have is the body tag isnt always just <body> it can have attributes – Crash893 Jul 23 at 19:57
In that case you may want to use one of the DOM parser solutions. You can match the opening body tag with a regex, but it doesn't work perfectly in all cases. That's been my experience anyway... – markwatson Jul 23 at 22:05
I think all i really need to do is find "<body" then walk the pointer till i see a ">" but i don't know how to do that – Crash893 Jul 23 at 23:10
vote up 4 vote down

I would recommend to use HtmlAgilityPack to parse the html into DOM and work with it.

link|flag
2  
I think this may be like using a cannon to swat a fly. The fact that its html is trival i guess. if i were going to do a search in windows it would just be indexof("<body*>"); but index of does not support wild cards – Crash893 Jul 23 at 19:37
1  
DOM manipulation really is the safest way of doing this, crash893. Using string manipulation on the HTML serialization of an object is like using a hammer to draft blueprints. – Daniel Papasian Jul 23 at 19:52
1  
+1 for analogy battle – Janie Jul 23 at 19:57
I can do it in 17 lines without DOM, It might be safer but its like driving a tank to church i don't need to be that safe – Crash893 Jul 23 at 20:35
vote up 1 vote down

You might want to look at using the Html Agility Pack

http://www.codeplex.com/htmlagilitypack

link|flag
you beat me to it.. – BigBlondeViking Jul 23 at 19:34
vote up 1 vote down

If the HTML files are valid XHTML you could always use the XmlDocument class to interpret it. You could then easily look for the body element and append a child element to it. This would place the element right before the closing </body> tag.

link|flag
vote up 1 vote down

I'm not sure whether the example content you want to add after the tag is the correct one or not, but if it is, I'm seeing two problems:

  1. The Google Analytics code should be added just before the end tag, not the opening tag. That ensures that you don't have to wait for it to load before loading your own code.
  2. If you're adding some other javascript, why not add that in an external file, and execute that one onload instead?

Hope that's of some help :)

link|flag
vote up 0 vote down

This is what i got

feel free to make suggestions

 private void button1_Click(object sender, EventArgs e)
        {
            OpenFileDialog OFD = new OpenFileDialog();
            OFD.Multiselect = true;
            OFD.Filter = "HTML Files (*.htm*)|*.HTM*|" +
          "All files (*.*)|*.*";

            if (OFD.ShowDialog() == DialogResult.OK)
            {
                foreach (string s in OFD.FileNames)
                {
                    Console.WriteLine(s);
                    AddAnalytics(s);
                }
                MessageBox.Show("done!");
            }
        }
        private void AddAnalytics(string filename)
        {

            string Htmlcode = "";
            using (StreamReader sr = new StreamReader(filename))
            {
                Htmlcode = sr.ReadToEnd();
            }
            if (!Htmlcode.Contains(textBox1.Text))
            {
                Htmlcode = Htmlcode.Replace("</body>", CreateCode(textBox1.Text) + "</body>");

                using (StreamWriter sw = new StreamWriter(filename))
                {
                    sw.Write(Htmlcode);
                }
            }
        }

        private string CreateCode(string Number)
        {
            StringBuilder sb = new StringBuilder();
            sb.AppendLine();
            sb.AppendLine("<script type=\"text/javascript\">");
            sb.AppendLine("var gaJsHost = ((\"https:\" == document.location.protocol) ? \"https://ssl.\" : \"http://www.\");");
            sb.AppendLine("document.write(unescape(\"%3Cscript src='\" + gaJsHost + \"google-analytics.com/ga.js' ");
            sb.AppendLine("<//script>");
            sb.AppendLine("<script type=/\"text//javascript/\">");
            sb.AppendLine("try {");
            sb.AppendLine(string.Format("var pageTracker = _gat._getTracker(/\"{0}/\");", Number));///"UA-9909000-1"
            sb.AppendLine("pageTracker._trackPageview();");
            sb.AppendLine("} catch(err) {}<//script>");
            sb.AppendLine();
            return sb.ToString();
        }
    }
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.