<?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>nandeshwar.info &#187; string</title>
	<atom:link href="http://nandeshwar.info/tag/string/feed/" rel="self" type="application/rss+xml" />
	<link>http://nandeshwar.info</link>
	<description></description>
	<lastBuildDate>Mon, 12 Dec 2011 21:33:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Count Text in a Range</title>
		<link>http://nandeshwar.info/2009/04/24/count-text-in-a-range/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=count-text-in-a-range</link>
		<comments>http://nandeshwar.info/2009/04/24/count-text-in-a-range/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 14:21:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[String Operations]]></category>
		<category><![CDATA[count]]></category>
		<category><![CDATA[excel functions]]></category>
		<category><![CDATA[string]]></category>
		<category><![CDATA[wildcard]]></category>

		<guid isPermaLink="false">http://nandeshwar.info/?p=191</guid>
		<description><![CDATA[Counting text in a range is easy. For example, if you would like count how many times &#8220;text&#8221; is in a specified range (named data), you can write something like this: =COUNTIF(data,"*text*") This formula will give you the count of all the cells where Excel found &#8220;text&#8221; at any place. But let&#8217;s say you want [...]]]></description>
			<content:encoded><![CDATA[<p>Counting text in a range is easy. For example, if you would like count how many times &#8220;text&#8221; is in a specified range (named data), you can write something like this:<br />
<code>=COUNTIF(data,"*text*")</code></p>
<p>This formula will give you the count of all the cells where Excel found &#8220;text&#8221; at any place.</p>
<p>But let&#8217;s say you want to count wildcard characters in a range, then you can write something like this:<br />
<code>=SUM(IF(NOT(ISERR(FIND("*",data))),1,0))</code></p>
<p>This formula should be entered as an array formula with Ctrl + Shift + Enter. Usually, wildcard can be &#8220;escaped&#8221; using a tilde (~), but the <code>FIND</code> function doesn&#8217;t understand wildcard characters like the <code>SEARCH</code> function does.</p>
]]></content:encoded>
			<wfw:commentRss>http://nandeshwar.info/2009/04/24/count-text-in-a-range/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>String Operations</title>
		<link>http://nandeshwar.info/2005/03/09/string-operations/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=string-operations</link>
		<comments>http://nandeshwar.info/2005/03/09/string-operations/#comments</comments>
		<pubDate>Wed, 09 Mar 2005 16:48:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[String Operations]]></category>
		<category><![CDATA[ANSI]]></category>
		<category><![CDATA[ASCII]]></category>
		<category><![CDATA[LHS]]></category>
		<category><![CDATA[string]]></category>

		<guid isPermaLink="false">http://a7n9.wordpress.com/2005/03/09/string-operations/</guid>
		<description><![CDATA[I found this on microsoft&#8217;s website. I didn&#8217;t know that I can use MID function on the LHS and converting string to ASCII will speed up the process. Cool!! &#8220;The following points provide suggestions for ways to enhance the performance of string operations: Minimize concatenation operations when you can. You can use the Mid function [...]]]></description>
			<content:encoded><![CDATA[<p>I found this on microsoft&#8217;s website. I didn&#8217;t know that I can use MID function on the LHS and converting string to ASCII will speed up the process. Cool!!</p>
<p> &#8220;The following points provide suggestions for ways to enhance the performance of string operations: <br />Minimize concatenation operations when you can. You can use the Mid function on the left side of the equal sign to replace characters within the string, rather than concatenating them together. The drawback to using the Mid function is that the replacement string must be the same length as the substring you are replacing. 
<div id="code">Dim strText As String</p>
<p>strText = &#8216;this is a test&#8217;<br />Mid(strText, 11, 4) = &#8216;tent&#8217;<br />Debug.Print strText</div>
<p>Microsoft Visual Basic for Applications (VBA) provides a number of intrinsic string constants that you can use to replace function calls. For example, you can use the vbCrLf constant to represent a carriage return/linefeed combination within a string, rather than using Chr(13) &amp; Chr(10). <br />String-comparison operations are slow. Sometimes, you can avoid them by converting a character in the string to an ANSI value. For example, the following code checks whether the first character in a string is a space: 
<div id="code">If Asc(strText) = 32 Then</div>
<p>The previous code is faster than the following: 
<div id="code">If Left(strText, 1) = &#8216; &#8216; Then&#8221;</div>
]]></content:encoded>
			<wfw:commentRss>http://nandeshwar.info/2005/03/09/string-operations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel Function to check if text is palindrome or not</title>
		<link>http://nandeshwar.info/2005/02/10/excel-function-to-check-if-text-is-palindrome-or-not/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=excel-function-to-check-if-text-is-palindrome-or-not</link>
		<comments>http://nandeshwar.info/2005/02/10/excel-function-to-check-if-text-is-palindrome-or-not/#comments</comments>
		<pubDate>Thu, 10 Feb 2005 15:16:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[String Operations]]></category>
		<category><![CDATA[string]]></category>
		<category><![CDATA[UDF]]></category>
		<category><![CDATA[VBA]]></category>

		<guid isPermaLink="false">http://a7n9.wordpress.com/2005/02/10/excel-function-to-check-if-text-is-palindrome-or-not/</guid>
		<description><![CDATA[Definition of palindrome as given in Answers.com pal?in?drome (p?l&#8217;?n-dr?m&#8217;) n. A word, phrase, verse, or sentence that reads the same backward or forward. For example: A man, a plan, a canal, Panama! Function IsPalindrome(sInput As String) As Boolean If sInput = StrReverse(sInput) Then IsPalindrome = True Else IsPalindrome = False End If End Function]]></description>
			<content:encoded><![CDATA[<p>Definition of palindrome as given in <a href="http://www.answers.com">Answers.com</a></p>
<p>pal?in?drome (p?l&#8217;?n-dr?m&#8217;)</p>
<p>n.</p>
<p>A word, phrase, verse, or sentence that reads the same backward or forward. For example: A man, a plan, a canal, Panama!</p>
<p><span style="font-family: Courier;"><span style="color:#00007F">Function</span> IsPalindrome(sInput <span style="color:#00007F">As</span> <span style="color:#00007F">String</span>) <span style="color:#00007F">As</span> <span style="color:#00007F">Boolean</span><br />
<span style="color:#00007F">If</span> sInput = StrReverse(sInput) <span style="color:#00007F">Then</span><br />
IsPalindrome = <span style="color:#00007F">True</span><br />
<span style="color:#00007F">Else</span><br />
IsPalindrome = <span style="color:#00007F">False</span><br />
<span style="color:#00007F">End</span> <span style="color:#00007F">If</span><br />
<span style="color:#00007F">End</span> <span style="color:#00007F">Function</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://nandeshwar.info/2005/02/10/excel-function-to-check-if-text-is-palindrome-or-not/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

