Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Chao Lam http://blogs.coolchaser.com

« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS 

Regular expression to match an HTML comment

// description of your code here
This snippet uses the non-greedy matcher, and the "m" option to treat strings as multi-lines, so it may not work with all regex parsers.

/\<!\s*--(.*?)(--\s*\>)/m

Examples in Ruby IRB:
irb(main):029:0> html = <<-EOL
irb(main):030:0" <!--  First  Comment   --
irb(main):031:0"       --> Second Comment <!--
irb(main):032:0"       --  Third  Comment   -->
irb(main):033:0" EOL
=> "<!--  First  Comment   --\n      --> Second Comment <!--\n      --  Third  Comment   -->\n"
irb(main):075:0> m = html.match(/\<!\s*--(.*?)(--\s*\>)/m)
=> #<MatchData:0x15915a4>
irb(main):076:0> m[0]
=> "<!--  First  Comment   --\n      -->"
irb(main):077:0> m[1]
=> "  First  Comment   --\n      "

Truncate text with word boundaries in Ruby

  def truncate_words(text, length = 30, end_string = '')
    words = text.split()
    words[0..(length-1)].join(' ') + (words.length > length ? end_string : '')
  end
« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS