vote up 0 vote down star

I want to extract contents of title tag from html string. I have done some search but so far i am not able to find such code in VB/C# or PHP. Also this should work with both upper and lower case tags e.g. should work with both <title></title> and <TITLE></TITLE>. Thank you.

flag
HTML is not, in general, well formed. Therefore any solution will come with error cases. What error cases are acceptable to you? – John McAleely Apr 4 at 14:14
I think it should ignore case and missing title tag from document. Maybe in best way it should be a function that return string title value or empty string if there is error or title tag is missing. – Humayun Apr 5 at 17:26

2 Answers

vote up 2 vote down

Sounds like a job for a regular expression. This will depend on the HTML being well-formed, i.e., only finds the title element inside a head element.

 Regex regex = new Regex( ".*<head>.*<title>(.*)</title>.*</head>.*",
                          RegexOptions.IgnoreCase );
 Match match = regex.Match( html );
 string title = match.Groups[0].Value;

I don't have my regex cheat sheet in front of me so it may need a little tweaking. Note that there is also no error checking in the case where no title element exists.

link|flag
"Sounds like a job for ... The More-Than-Regular Expressor!" A developer by day, a superhero by night ;) – Piskvor Apr 4 at 15:46
RE: "Well-formed" -- You're not required to place the <title> element as a child of <head> in HTML 4.01. I only point this out as an example of why using regex & HTML generally leads to frustration. See: shawn.medero.net/demos/valid-html4 – soypunk Apr 4 at 23:07
Even worse than soypunk correctly points out, there are many usable HTML files with a title that are not valid. e.g. <tiTlE>a<boDy>b You really need to use an HTML parser if you're going to handle real-world HTML. – Alohci Apr 4 at 23:51
So can any one suggest how to use an HTML parser to extract title? – Humayun Apr 5 at 17:28
vote up 2 vote down

You can use regular expressions for this but it's not completely error-proof. It'll do if you just want something simple though (in PHP):

function get_title($html) {
  return preg_match('!<title>(.*?)</title>!i', $html, $matches) ? $matches[1] : '';
}
link|flag
Looks like this function is case sensitive, this function does not extract title if its in upper case, can you alter this function to ignore the case? – Humayun Apr 5 at 17:35
The 'i' flag after the pattern makes it case insensitive. – cletus Apr 5 at 20:53

Your Answer

Get an OpenID
or

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