9/16/2012

Demo Code

public static bool IsValidURL(string strURL) { string regExPattern = @"^^(ht|f)tp(s?)\:\/\/[0-9a-zA-Z]([-.\w]*[0-9a-zA-Z])*(:(0-9)*)*(\/?)([a-zA-Z0-9\-\.\?\,\'\/\\\+&%\$#_=]*)?$"; Regex re = new Regex(regExPattern); return re.IsMatch(strURL); } demo highlight foo bar   Demo Quote...

Save And Share :

8/25/2012

Easy Change the Text Selection Color In Blogger

It very simple to change your select sentence or a single word prevent by default with set as blue color. Now let's start: 1.  Go to Blogger Dashboard > Template > Edit HTML. 2.  Back up your template first if you don't want make some problem :) 3.  Check the Expand Widget Templates checkbox. 4.  Now search (CTRL+F) for the code tag below:  ]]></b:skin>And now add the below code before it ::-moz-selection{background: #9E0ADC;color: white;} ::selection{background: #9E0ADC;color: white;}You can see demo on my blog. Hope you enjoyed doing this trick for your ...

Save And Share :

6/11/2012

Regex quick reference

[abc] A single character of: a, b or c [^abc] Any single character except: a, b, or c [a-z] Any single character in the range a-z [a-zA-Z] Any single character in the range a-z or A-Z ^ Start of line $ End of line \A Start of string \z End of string . Any single character \s Any whitespace character \S Any non-whitespace character \d Any digit \D Any non-digit \w Any word character (letter, number, underscore) \W Any non-word character \b Any word boundary character (...) Capture everything enclosed (a|b) a or b a? Zero or one of a a* Zero or more of a a+ One or more of a a{3} Exactly 3 of a a{3,} 3 or more of...

Save And Share :

Remove Html Tag in C#

You want to remove HTML tags from your string. This is useful for displaying HTML in plain text and stripping formatting like bold and italics, while not removing any actual textual content. Test the methods available for this functionality for performance and correctness with test cases. These C# example programs show how to remove HTML tags from strings.Removing HTML tags from strings Input: <p>The <b>dog</b> is <i>cute</i>.</p> Output: The dog is cute. Performance test for HTML removal HtmlRemoval.StripTagsRegex: 2404 ms HtmlRemoval.StripTagsRegexCompiled: 1366 ms HtmlRemoval.StripTagsCharArray:...

Save And Share :

Remove Html Tag with jQuery

The example below show how to remove HTML tags from strings with jQuery   INPUT:         <b>We</b>love<span>jQuery.</span> OUTPUT:   We love jQuery. jQuery source: var NewString = OriginalString.replace(/(<([^>]+)>)/ig, "");...

Save And Share :

 
  • If you think your teacher is tough, wait until you get a boss. He doesn't have tenure.

  • Followers