Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

For example I have text:

"testestestestt testestestes <img src='image.jpg'>"

I want to write function which check if in string is img tag and return true

share|improve this question
Easiest is regex, but it won't be very robust. – David Titarenco Jan 7 at 19:50

4 Answers

up vote 7 down vote accepted

using regex:

"testestestestt testestestes <img src='image.jpg'>".match(/<img/)
share|improve this answer

You can go for indexOf('src=') > -1

And here is your function:

function hasImg( str ){
  return  str.indexOf('src=')> -1 ;
}



alert( hasImg(" have IMG  testestestes <img src='image.jpg'>") ); // true

jsBin demo function

share|improve this answer
2  
frames and script tags also have a src attribute, this will return true for those as well. – sachleen Jan 7 at 20:00
var str = "testestestestt testestestes <img src='image.jpg'>";
var hasImg = !!$('<div />').html(str).find('img').length
share|improve this answer
This will try to load the image when you add it to the div. – Rocket Hazmat Jan 7 at 19:55
2  
Although this will try to load the image when added to the div, it's the only answer that actually checks for the existence of an img element rather than just a string "img" or a variation of that. – sachleen Jan 7 at 19:58

Obviously, regular expressions are not recommend for parsing HTML, however, depending on the way you are using this, you may want to be assured that the img tag(s) have a corresponding ending tag. This is a slightly more robust regular expression for that:

if("<img>TestString</img>".match(/<img[^<]*>[\w\d]*<\/img>|<img[^\/]*\/>/i))
{
  alert('matched');
}
else
  alert('nope');

Matched Test Cases:

- blahsdkfajsldkfj<img blah src=\"\">iImmage123dfasdfsa</img>
- blahsdkfajsldkfj<img>iImmage123dfasdfsa</img>asdfas
- <img src=\"\"></img>
- <img></img>
- <img />

Unmatched Test Cases:

- <img (other regex would match this)
- <img>

Once you match it you can easily process it with an XML or HTML parser are then check if it has the src attribute etc.

share|improve this answer
Hmm this gives me always null for this kind of img tags: testestestestestes <img src="http://i.imgur.com/0kZ5U.png" /> – regedarek Jan 8 at 17:44
@regedarek Make sure you don't have tags like this <img src=".." /></img> because if you do this <img /> there's no need for a closing tag </img> – Alex W Jan 8 at 22:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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