Unicode Transformation Format 8-bit (UTF-8) is in standard use by the majority of web application developers. The following excerpt from Cal Henderson's Building Scalable Web Sites explains how to use...
10 November 2009 - 05:12 PM | 0 CommentsAsked by juliesteele
09 November 2009 - 12:13 PM
There is a variety of software (including the Unix command-line utility uniq and Windows PowerShell cmdlet Get-Unique) that can help you remove duplicate lines in a file or ...
30 October 2009 - 08:35 AM | 0 Comments
If you want to instantiate a regular expression object or otherwise compile a regular expression so you can use it efficiently throughout your application, try one of t...
18 September 2009 - 10:51 AM | 0 Comments
Traditional grep tools apply your regular expression to one line of text at a time, and display the lines matched (or not matched) by the regular expression. If you hav...
18 September 2009 - 10:22 AM | 0 Comments
If you want to replace all matches of the regular expression before with the replacement text after, try one of the following examples:C#You can use the static call when you process on...
18 September 2009 - 09:56 AM | 0 Comments
Suppose you have an HTML file in which various passages are marked as bold with <b> tags. You want to find all numbers marked as bold. If some bold text contains multiple numbers, you want to ma...
17 September 2009 - 04:46 PM | 0 Comments
If you just executed an SQL statement, but you’re not sure whether it produced a result set, check the column count in the metadata. If the count is zero, there is no result ...
11 September 2009 - 05:27 PM | 0 Comments
If you want to know things about the result set, such as the column names and data types, or how many rows and columns there are, use the appropriate capabilities provided by your API.For sta...
11 September 2009 - 04:24 PM | 0 Comments