fork download
  1. import java.util.regex.Pattern;
  2.  
  3. class DetectHtml
  4. {
  5. // adapted from re posted by Phil Haack and modified to match better
  6. public final static String tagStart=
  7. "\\<\\w+((\\s+\\w+(\\s*\\=\\s*(?:\".*?\"|'.*?'|[^'\"\\>\\s]+))?)+\\s*|\\s*)\\>";
  8. public final static String tagEnd=
  9. "\\</\\w+\\>";
  10. public final static String tagSelfClosing=
  11. "\\<\\w+((\\s+\\w+(\\s*\\=\\s*(?:\".*?\"|'.*?'|[^'\"\\>\\s]+))?)+\\s*|\\s*)/\\>";
  12. public final static String htmlEntity=
  13. "&[a-zA-Z][a-zA-Z0-9]+;";
  14. public final static Pattern htmlPattern=Pattern.compile(
  15. "("+tagStart+".*"+tagEnd+")|("+tagSelfClosing+")|("+htmlEntity+")",
  16. Pattern.DOTALL
  17. );
  18.  
  19. public static boolean isHtml(String s) {
  20. boolean ret=false;
  21. if (s != null) {
  22. ret=htmlPattern.matcher(s).find();
  23. }
  24. return ret;
  25. }
  26.  
  27. // test - you can delete me
  28. public static void main (String[] args) throws java.lang.Exception
  29. {
  30. String strIsNotHtml="<div class="js-tweet-text-container">
  31. <p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://t...content-available-to-author-only...r.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://b...content-available-to-author-only...t.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://content-available-to-author-only.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://b...content-available-to-author-only...t.ly/2bPPQh5">http://b...content-available-to-author-only...t.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://t...content-available-to-author-only...r.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
  32. <p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0"><img alt="" style="top: 0px;" src="https://p...content-available-to-author-only...g.com/media/Cqts13XWgAADqbA.jpg"><br>
  33. <br>
  34. </p>
  35. </div>
  36. <div class="AdaptiveMedia is-square ">
  37. <div class="AdaptiveMedia-container js-adaptive-media-container ">
  38. <div class="AdaptiveMedia-singlePhoto">
  39. <div class="AdaptiveMedia-photoContainer js-adaptive-photo " data-element-context="platform_photo_card" data-image-url="https://p...content-available-to-author-only...g.com/media/Cqts13XWgAADqbA.jpg" loaded="true"></div>
  40. </div>
  41. </div>
  42. </div>";
  43. System.out.println(strIsNotHtml + " - " + (isHtml(strIsNotHtml) ? "IS HTML" : "IS NOT HTML"));
  44.  
  45. }
  46.  
  47. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:30: error: ';' expected
		String strIsNotHtml="<div class="js-tweet-text-container">
		                                 ^
Main.java:30: error: unclosed string literal
		String strIsNotHtml="<div class="js-tweet-text-container">
		                                                        ^
Main.java:30: error: not a statement
		String strIsNotHtml="<div class="js-tweet-text-container">
		                                              ^
Main.java:31: error: > expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
   ^
Main.java:31: error: ';' expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                     ^
Main.java:31: error: ';' expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                  ^
Main.java:31: error: ';' expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                   ^
Main.java:31: error: variable declaration not allowed here
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                               ^
Main.java:31: error: '(' expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                    ^
Main.java:31: error: ')' expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                 ^
Main.java:31: error: > expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                               ^
Main.java:31: error: not a statement
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                            ^
Main.java:31: error: illegal start of expression
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                    ^
Main.java:31: error: ';' expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                     ^
Main.java:31: error: ';' expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                   ^
Main.java:31: error: ';' expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                                                                            ^
Main.java:31: error: illegal character: '#'
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                                                                                                                  ^
Main.java:31: error: illegal start of type
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                                                                                                                    ^
Main.java:31: error: illegal start of expression
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                                                                                                                     ^
Main.java:31: error: illegal start of expression
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                                                                                                                               ^
Main.java:31: error: not a statement
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                                                                                                                      ^
Main.java:31: error: illegal start of type
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                                                                                                                                            ^
Main.java:31: error: illegal start of expression
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                                                                                                                                             ^
Main.java:31: error: illegal start of type
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                                                                                                                                                     ^
Main.java:31: error: illegal start of expression
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                                                                                                                                                      ^
Main.java:31: error: not a statement
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                                                                                                                                                       ^
Main.java:31: error: ';' expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                                                                                                                                                                ^
Main.java:31: error: > expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                                                                                                                                                                     ^
Main.java:31: error: ';' expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                                                                                                                                                                                                  ^
Main.java:31: error: <identifier> expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                                                                                                                                                                                                        ^
Main.java:31: error: illegal start of type
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                                                                                                                                                                                                         ^
Main.java:31: error: ';' expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                                                                                                                                                                                                                                          ^
Main.java:31: error: <identifier> expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                                                                                                                                                                                                                                               ^
Main.java:31: error: ';' expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                                                                                                                                                                                                                                                                         ^
Main.java:31: error: <identifier> expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                ^
Main.java:31: error: ';' expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ^
Main.java:31: error: <identifier> expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ^
Main.java:31: error: ';' expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ^
Main.java:31: error: <identifier> expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ^
Main.java:31: error: <identifier> expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ^
Main.java:31: error: <identifier> expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ^
Main.java:31: error: ';' expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0">Why do projects fail? Read answers from five <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/construction?src=hash" data-query-source="hashtag_click"><s>#</s><strong>construction</strong></a> experts: <a title="http://bit.ly/2bPPQh5" class="twitter-timeline-link" dir="ltr" href="https://t.co/C8U2v88lcW" target="_blank" rel="nofollow" data-expanded-url="http://bit.ly/2bPPQh5">http://bit.ly/2bPPQh5&nbsp;</a> <a class="twitter-hashtag pretty-link js-nav" dir="ltr" href="https://twitter.com/hashtag/RICSJournals?src=hash" data-query-source="hashtag_click"><s>#</s><strong>RICSJournals</strong></a></p>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ^
Main.java:32: error: > expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0"><img alt="" style="top: 0px;" src="https://pbs.twimg.com/media/Cqts13XWgAADqbA.jpg"><br>
  ^
Main.java:32: error: illegal start of type
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0"><img alt="" style="top: 0px;" src="https://pbs.twimg.com/media/Cqts13XWgAADqbA.jpg"><br>
   ^
Main.java:32: error: <identifier> expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0"><img alt="" style="top: 0px;" src="https://pbs.twimg.com/media/Cqts13XWgAADqbA.jpg"><br>
        ^
Main.java:32: error: '(' expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0"><img alt="" style="top: 0px;" src="https://pbs.twimg.com/media/Cqts13XWgAADqbA.jpg"><br>
         ^
Main.java:32: error: <identifier> expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0"><img alt="" style="top: 0px;" src="https://pbs.twimg.com/media/Cqts13XWgAADqbA.jpg"><br>
                                                                          ^
Main.java:32: error: <identifier> expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0"><img alt="" style="top: 0px;" src="https://pbs.twimg.com/media/Cqts13XWgAADqbA.jpg"><br>
                                                                               ^
Main.java:32: error: <identifier> expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0"><img alt="" style="top: 0px;" src="https://pbs.twimg.com/media/Cqts13XWgAADqbA.jpg"><br>
                                                                                     ^
Main.java:32: error: <identifier> expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0"><img alt="" style="top: 0px;" src="https://pbs.twimg.com/media/Cqts13XWgAADqbA.jpg"><br>
                                                                                          ^
Main.java:32: error: > expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0"><img alt="" style="top: 0px;" src="https://pbs.twimg.com/media/Cqts13XWgAADqbA.jpg"><br>
                                                                                                    ^
Main.java:32: error: ';' expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0"><img alt="" style="top: 0px;" src="https://pbs.twimg.com/media/Cqts13XWgAADqbA.jpg"><br>
                                                                                                          ^
Main.java:32: error: <identifier> expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0"><img alt="" style="top: 0px;" src="https://pbs.twimg.com/media/Cqts13XWgAADqbA.jpg"><br>
                                                                                                                ^
Main.java:32: error: ';' expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0"><img alt="" style="top: 0px;" src="https://pbs.twimg.com/media/Cqts13XWgAADqbA.jpg"><br>
                                                                                                                            ^
Main.java:32: error: <identifier> expected
<p class="TweetTextSize TweetTextSize--26px js-tweet-text tweet-text" data-aria-label-part="0"><img alt="" style="top: 0px;" src="https://pbs.twimg.com/media/Cqts13XWgAADqbA.jpg"><br>
                                                                                                                                ^
Main.java:33: error: illegal start of expression
<br>
^
Main.java:34: error: illegal start of type
</p>
 ^
Main.java:34: error: illegal start of expression
</p>
  ^
Main.java:35: error: illegal start of type
</div>
 ^
Main.java:35: error: illegal start of expression
</div>
  ^
Main.java:36: error: > expected
<div class="AdaptiveMedia is-square ">
     ^
Main.java:37: error: > expected
<div class="AdaptiveMedia-container js-adaptive-media-container ">
     ^
Main.java:38: error: > expected
<div class="AdaptiveMedia-singlePhoto">
     ^
Main.java:39: error: > expected
<div class="AdaptiveMedia-photoContainer js-adaptive-photo " data-element-context="platform_photo_card" data-image-url="https://pbs.twimg.com/media/Cqts13XWgAADqbA.jpg" loaded="true"></div>
     ^
Main.java:39: error: ';' expected
<div class="AdaptiveMedia-photoContainer js-adaptive-photo " data-element-context="platform_photo_card" data-image-url="https://pbs.twimg.com/media/Cqts13XWgAADqbA.jpg" loaded="true"></div>
                                                            ^
Main.java:39: error: <identifier> expected
<div class="AdaptiveMedia-photoContainer js-adaptive-photo " data-element-context="platform_photo_card" data-image-url="https://pbs.twimg.com/media/Cqts13XWgAADqbA.jpg" loaded="true"></div>
                                                                 ^
Main.java:39: error: <identifier> expected
<div class="AdaptiveMedia-photoContainer js-adaptive-photo " data-element-context="platform_photo_card" data-image-url="https://pbs.twimg.com/media/Cqts13XWgAADqbA.jpg" loaded="true"></div>
                                                                         ^
Main.java:39: error: <identifier> expected
<div class="AdaptiveMedia-photoContainer js-adaptive-photo " data-element-context="platform_photo_card" data-image-url="https://pbs.twimg.com/media/Cqts13XWgAADqbA.jpg" loaded="true"></div>
                                                                                 ^
Main.java:39: error: ';' expected
<div class="AdaptiveMedia-photoContainer js-adaptive-photo " data-element-context="platform_photo_card" data-image-url="https://pbs.twimg.com/media/Cqts13XWgAADqbA.jpg" loaded="true"></div>
                                                                                                       ^
Main.java:39: error: <identifier> expected
<div class="AdaptiveMedia-photoContainer js-adaptive-photo " data-element-context="platform_photo_card" data-image-url="https://pbs.twimg.com/media/Cqts13XWgAADqbA.jpg" loaded="true"></div>
                                                                                                            ^
Main.java:39: error: <identifier> expected
<div class="AdaptiveMedia-photoContainer js-adaptive-photo " data-element-context="platform_photo_card" data-image-url="https://pbs.twimg.com/media/Cqts13XWgAADqbA.jpg" loaded="true"></div>
                                                                                                                  ^
Main.java:39: error: <identifier> expected
<div class="AdaptiveMedia-photoContainer js-adaptive-photo " data-element-context="platform_photo_card" data-image-url="https://pbs.twimg.com/media/Cqts13XWgAADqbA.jpg" loaded="true"></div>
                                                                                                                      ^
Main.java:39: error: ';' expected
<div class="AdaptiveMedia-photoContainer js-adaptive-photo " data-element-context="platform_photo_card" data-image-url="https://pbs.twimg.com/media/Cqts13XWgAADqbA.jpg" loaded="true"></div>
                                                                                                                                                                        ^
Main.java:39: error: <identifier> expected
<div class="AdaptiveMedia-photoContainer js-adaptive-photo " data-element-context="platform_photo_card" data-image-url="https://pbs.twimg.com/media/Cqts13XWgAADqbA.jpg" loaded="true"></div>
                                                                                                                                                                               ^
Main.java:39: error: illegal start of type
<div class="AdaptiveMedia-photoContainer js-adaptive-photo " data-element-context="platform_photo_card" data-image-url="https://pbs.twimg.com/media/Cqts13XWgAADqbA.jpg" loaded="true"></div>
                                                                                                                                                                                        ^
Main.java:39: error: illegal start of expression
<div class="AdaptiveMedia-photoContainer js-adaptive-photo " data-element-context="platform_photo_card" data-image-url="https://pbs.twimg.com/media/Cqts13XWgAADqbA.jpg" loaded="true"></div>
                                                                                                                                                                                         ^
Main.java:40: error: illegal start of type
</div>
 ^
Main.java:40: error: illegal start of expression
</div>
  ^
Main.java:41: error: illegal start of type
</div>
 ^
Main.java:41: error: illegal start of expression
</div>
  ^
Main.java:42: error: illegal start of type
</div>";
 ^
Main.java:42: error: illegal start of expression
</div>";
  ^
Main.java:42: error: unclosed string literal
</div>";
      ^
Main.java:43: error: <identifier> expected
		System.out.println(strIsNotHtml + " - " + (isHtml(strIsNotHtml) ? "IS HTML" : "IS NOT HTML"));
		                  ^
Main.java:43: error: <identifier> expected
		System.out.println(strIsNotHtml + " - " + (isHtml(strIsNotHtml) ? "IS HTML" : "IS NOT HTML"));
		                               ^
Main.java:43: error: ';' expected
		System.out.println(strIsNotHtml + " - " + (isHtml(strIsNotHtml) ? "IS HTML" : "IS NOT HTML"));
		                                 ^
Main.java:43: error: illegal start of type
		System.out.println(strIsNotHtml + " - " + (isHtml(strIsNotHtml) ? "IS HTML" : "IS NOT HTML"));
		                                        ^
Main.java:43: error: <identifier> expected
		System.out.println(strIsNotHtml + " - " + (isHtml(strIsNotHtml) ? "IS HTML" : "IS NOT HTML"));
		                                         ^
Main.java:43: error: ';' expected
		System.out.println(strIsNotHtml + " - " + (isHtml(strIsNotHtml) ? "IS HTML" : "IS NOT HTML"));
		                                           ^
Main.java:43: error: illegal start of type
		System.out.println(strIsNotHtml + " - " + (isHtml(strIsNotHtml) ? "IS HTML" : "IS NOT HTML"));
		                                                 ^
Main.java:43: error: ';' expected
		System.out.println(strIsNotHtml + " - " + (isHtml(strIsNotHtml) ? "IS HTML" : "IS NOT HTML"));
		                                                              ^
Main.java:47: error: reached end of file while parsing
}
 ^
92 errors
stdout
Standard output is empty