<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>web development helpdesk &#187; Pattern</title>
	<atom:link href="http://helpdesk.objects.com.au/tag/pattern/feed" rel="self" type="application/rss+xml" />
	<link>http://helpdesk.objects.com.au</link>
	<description>objects quality - the visible difference</description>
	<lastBuildDate>Sun, 17 Jul 2011 12:27:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>Search a byte array for a byte sequence</title>
		<link>http://helpdesk.objects.com.au/java/search-a-byte-array-for-a-byte-sequence?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=search-a-byte-array-for-a-byte-sequence</link>
		<comments>http://helpdesk.objects.com.au/java/search-a-byte-array-for-a-byte-sequence#comments</comments>
		<pubDate>Fri, 02 Oct 2009 06:15:15 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[byte]]></category>
		<category><![CDATA[match]]></category>
		<category><![CDATA[Pattern]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=1237</guid>
		<description><![CDATA[The Knuth-Morris-Pratt Pattern Matching Algorithm can be used to search a byte array. public class KPM { /** * Search the data byte array for the first occurrence * of the byte array pattern. */ public static int indexOf(byte[] data, byte[] pattern) { int[] failure = computeFailure(pattern); int j = 0; for (int i = [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/search-a-byte-array-for-a-byte-sequence/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to ignore all special characters in a regex string</title>
		<link>http://helpdesk.objects.com.au/java/how-to-ignore-all-special-characters-in-a-regex-string?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-ignore-all-special-characters-in-a-regex-string</link>
		<comments>http://helpdesk.objects.com.au/java/how-to-ignore-all-special-characters-in-a-regex-string#comments</comments>
		<pubDate>Mon, 01 Jun 2009 12:10:48 +0000</pubDate>
		<dc:creator>objects</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[escape]]></category>
		<category><![CDATA[Pattern]]></category>
		<category><![CDATA[quote]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[regular expression]]></category>

		<guid isPermaLink="false">http://helpdesk.objects.com.au/?p=1036</guid>
		<description><![CDATA[You can use the Pattern classes quote method. It returns the literal pattern string for the specified string. String literal = Pattern.quote(string); Related posts: How to list all Unicode characters? A lopp can be used to display all through all... How to limit number of characters in JTextField? To restrict the number of characters that [...]]]></description>
		<wfw:commentRss>http://helpdesk.objects.com.au/java/how-to-ignore-all-special-characters-in-a-regex-string/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

