--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/_non_modifier_8cpp-source.html Fri Jan 22 18:26:19 2010 +0000
@@ -0,0 +1,322 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
+<title>TB10.1 Example Applications: examples/Base/BufsAndStrings/Desc/NonModifier/NonModifier.cpp Source File</title>
+<link href="doxygen.css" rel="stylesheet" type="text/css">
+<link href="tabs.css" rel="stylesheet" type="text/css">
+</head><body>
+<!-- Generated by Doxygen 1.5.3 -->
+<h1>examples/Base/BufsAndStrings/Desc/NonModifier/NonModifier.cpp</h1><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">// Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies).</span>
+<a name="l00002"></a>00002 <span class="comment">// All rights reserved.</span>
+<a name="l00003"></a>00003 <span class="comment">// This component and the accompanying materials are made available</span>
+<a name="l00004"></a>00004 <span class="comment">// under the terms of "Eclipse Public License v1.0"</span>
+<a name="l00005"></a>00005 <span class="comment">// which accompanies this distribution, and is available</span>
+<a name="l00006"></a>00006 <span class="comment">// at the URL "http://www.eclipse.org/legal/epl-v10.html".</span>
+<a name="l00007"></a>00007 <span class="comment">//</span>
+<a name="l00008"></a>00008 <span class="comment">// Initial Contributors:</span>
+<a name="l00009"></a>00009 <span class="comment">// Nokia Corporation - initial contribution.</span>
+<a name="l00010"></a>00010 <span class="comment">//</span>
+<a name="l00011"></a>00011 <span class="comment">// Contributors:</span>
+<a name="l00012"></a>00012 <span class="comment">//</span>
+<a name="l00013"></a>00013 <span class="comment">// Description:</span>
+<a name="l00014"></a>00014 <span class="comment">// Examples to demonstrate some of the non-modifying member</span>
+<a name="l00015"></a>00015 <span class="comment">// functions of descriptors.</span>
+<a name="l00016"></a>00016 <span class="comment">//</span>
+<a name="l00017"></a>00017
+<a name="l00018"></a>00018 <span class="preprocessor">#include "CommonFramework.h"</span>
+<a name="l00019"></a>00019
+<a name="l00020"></a>00020 <span class="comment">//</span>
+<a name="l00021"></a>00021 <span class="comment">// Common literal text</span>
+<a name="l00022"></a>00022 <span class="comment">//</span>
+<a name="l00023"></a>00023 _LIT(KTxtPressToContinue,<span class="stringliteral">" (press any key to continue)\n"</span>);
+<a name="l00024"></a>00024 _LIT(KTxtnotfound,<span class="stringliteral">"NOT FOUND"</span>);
+<a name="l00025"></a>00025 _LIT(KTxtfound,<span class="stringliteral">"found"</span>);
+<a name="l00026"></a>00026 _LIT(KTxtlessthan,<span class="stringliteral">" is less than "</span>);
+<a name="l00027"></a>00027 _LIT(KTxtgreaterthan,<span class="stringliteral">" is greater than "</span>);
+<a name="l00028"></a>00028 _LIT(KTxtequalto,<span class="stringliteral">" is equal to "</span>);
+<a name="l00029"></a>00029
+<a name="l00030"></a>00030 <span class="comment">//</span>
+<a name="l00031"></a>00031 <span class="comment">// Common Format strings</span>
+<a name="l00032"></a>00032 <span class="comment">//</span>
+<a name="l00033"></a>00033 _LIT(KCommonFormat2,<span class="stringliteral">"Length()=%d; Size()=%d\n"</span>);
+<a name="l00034"></a>00034 _LIT(KCommonFormat8,<span class="stringliteral">"\"%S\" Char %c is at pos %d (%S)\n"</span>);
+<a name="l00035"></a>00035 _LIT(KCommonFormat9,<span class="stringliteral">"%- 8S pos %2d (%S)\n"</span>);
+<a name="l00036"></a>00036 <span class="comment">//</span>
+<a name="l00037"></a>00037 <span class="comment">// Compare strings</span>
+<a name="l00038"></a>00038 <span class="comment">//</span>
+<a name="l00039"></a>00039 _LIT(KTxtCompstr1,<span class="stringliteral">"Hello World!@@"</span>);
+<a name="l00040"></a>00040 _LIT(KTxtCompstr2,<span class="stringliteral">"Hello"</span>);
+<a name="l00041"></a>00041 _LIT(KTxtCompstr3,<span class="stringliteral">"Hello Worl"</span>);
+<a name="l00042"></a>00042 _LIT(KTxtCompstr4,<span class="stringliteral">"Hello World!"</span>);
+<a name="l00043"></a>00043 _LIT(KTxtCompstr5,<span class="stringliteral">"hello world!"</span>);
+<a name="l00044"></a>00044 _LIT(KTxtCompstr6,<span class="stringliteral">"Hello World "</span>);
+<a name="l00045"></a>00045 _LIT(KTxtCompstr7,<span class="stringliteral">"Hello World@"</span>);
+<a name="l00046"></a>00046
+<a name="l00047"></a>00047 <span class="comment">//</span>
+<a name="l00048"></a>00048 <span class="comment">// Match strings</span>
+<a name="l00049"></a>00049 <span class="comment">//</span>
+<a name="l00050"></a>00050 _LIT(KTxtMatchstr1,<span class="stringliteral">"*World*"</span>);
+<a name="l00051"></a>00051 _LIT(KTxtMatchstr2,<span class="stringliteral">"*W?rld*"</span>);
+<a name="l00052"></a>00052 _LIT(KTxtMatchstr3,<span class="stringliteral">"Wor*"</span>);
+<a name="l00053"></a>00053 _LIT(KTxtMatchstr4,<span class="stringliteral">"Hello"</span>);
+<a name="l00054"></a>00054 _LIT(KTxtMatchstr5,<span class="stringliteral">"*W*"</span>);
+<a name="l00055"></a>00055 _LIT(KTxtMatchstr6,<span class="stringliteral">"hello*"</span>);
+<a name="l00056"></a>00056 _LIT(KTxtMatchstr7,<span class="stringliteral">"*"</span>);
+<a name="l00057"></a>00057
+<a name="l00058"></a>00058
+<a name="l00059"></a>00059 <span class="comment">// Do the example</span>
+<a name="l00060"></a>00060 LOCAL_C <span class="keywordtype">void</span> doExampleL()
+<a name="l00061"></a>00061 {
+<a name="l00062"></a>00062 TInt index;
+<a name="l00063"></a>00063 TInt pos;
+<a name="l00064"></a>00064 TPtrC genptr;
+<a name="l00065"></a>00065
+<a name="l00066"></a>00066 <span class="comment">// Use a TBufC to demonstrate some of these</span>
+<a name="l00067"></a>00067 <span class="comment">// and use the standard "Hello World!" text</span>
+<a name="l00068"></a>00068 _LIT(KTxtHelloWorld,<span class="stringliteral">"Hello World!"</span>);
+<a name="l00069"></a>00069 <span class="keyword">const</span> TBufC<16> bufc(KTxtHelloWorld);
+<a name="l00070"></a>00070
+<a name="l00071"></a>00071 <span class="comment">// </span>
+<a name="l00072"></a>00072 <span class="comment">// Right() & Mid() * * * * * * * * * * * * </span>
+<a name="l00073"></a>00073 <span class="comment">// </span>
+<a name="l00074"></a>00074 _LIT(KTxtRightMid,<span class="stringliteral">"\n--->Right() & Mid()\n"</span>);
+<a name="l00075"></a>00075 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Printf(KTxtRightMid);
+<a name="l00076"></a>00076
+<a name="l00077"></a>00077 <span class="comment">// Look at the content of bufc</span>
+<a name="l00078"></a>00078 _LIT(KFormat1,<span class="stringliteral">" TBufC: \"%S\"; Ptr()=%x; "</span>);
+<a name="l00079"></a>00079 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Printf(KFormat1,&bufc,bufc.Ptr());
+<a name="l00080"></a>00080
+<a name="l00081"></a>00081 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Printf(KCommonFormat2,bufc.Length(),bufc.Size());
+<a name="l00082"></a>00082
+<a name="l00083"></a>00083 <span class="comment">// Construct a TPtrC to represent the right</span>
+<a name="l00084"></a>00084 <span class="comment">// hand 5 data items. The function Left()</span>
+<a name="l00085"></a>00085 <span class="comment">// is similar.</span>
+<a name="l00086"></a>00086 TPtrC ptrc1 = bufc.Right(5);
+<a name="l00087"></a>00087
+<a name="l00088"></a>00088 <span class="comment">// ptrc's data is "orld!"</span>
+<a name="l00089"></a>00089 <span class="comment">// Length of ptrc is 5</span>
+<a name="l00090"></a>00090 <span class="comment">// ptrc's data area address = bufc's data area</span>
+<a name="l00091"></a>00091 <span class="comment">// address + 7</span>
+<a name="l00092"></a>00092 _LIT(KFormat3,<span class="stringliteral">"Right TPtrC: \"%S\"; Ptr()=%x; "</span>);
+<a name="l00093"></a>00093 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Printf(KFormat3,&ptrc1,ptrc1.Ptr());
+<a name="l00094"></a>00094 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Printf(KCommonFormat2,ptrc1.Length(),ptrc1.Size());
+<a name="l00095"></a>00095
+<a name="l00096"></a>00096 <span class="comment">// Construct a TPtrC to represent the 6 data</span>
+<a name="l00097"></a>00097 <span class="comment">// items offset 3 from the start of bufc's</span>
+<a name="l00098"></a>00098 <span class="comment">// data area. </span>
+<a name="l00099"></a>00099 TPtrC ptrc2 = bufc.Mid(3,6);
+<a name="l00100"></a>00100
+<a name="l00101"></a>00101 <span class="comment">// ptrc's data is "lo Wor"</span>
+<a name="l00102"></a>00102 <span class="comment">// Length of ptrc is 6</span>
+<a name="l00103"></a>00103 <span class="comment">// ptrc's data area address = buf's data area</span>
+<a name="l00104"></a>00104 <span class="comment">// address + 3</span>
+<a name="l00105"></a>00105 _LIT(KFormat4,<span class="stringliteral">" Mid TPtrC: \"%S\"; Ptr()=%x; "</span>);
+<a name="l00106"></a>00106 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Printf(KFormat4,&ptrc2,ptrc2.Ptr());
+<a name="l00107"></a>00107 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Printf(KCommonFormat2,ptrc2.Length(),ptrc2.Size());
+<a name="l00108"></a>00108 <span class="comment">// In practice, there is often no need to </span>
+<a name="l00109"></a>00109 <span class="comment">// assign the returned TPtrC to another TPtrC.</span>
+<a name="l00110"></a>00110 <span class="comment">// For example, the following code puts a </span>
+<a name="l00111"></a>00111 <span class="comment">// value of 3 in pos; this is the offset</span>
+<a name="l00112"></a>00112 <span class="comment">// of char 'W' within the chars "lo Wor" </span>
+<a name="l00113"></a>00113 <span class="comment">// (see later for more detail on Locate())</span>
+<a name="l00114"></a>00114
+<a name="l00115"></a>00115 pos = (bufc.Mid(3,6)).Locate(<span class="charliteral">'W'</span>);
+<a name="l00116"></a>00116 _LIT(KFormat5,<span class="stringliteral">"(bufc.Mid(3,6)).Locate('W') returns %d\n"</span>);
+<a name="l00117"></a>00117 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Printf(KFormat5,pos);
+<a name="l00118"></a>00118
+<a name="l00119"></a>00119 <span class="comment">// Want the 13 right hand data items.</span>
+<a name="l00120"></a>00120 <span class="comment">// This is > current length of bufc</span>
+<a name="l00121"></a>00121 <span class="comment">// causing panic !!</span>
+<a name="l00122"></a>00122 <span class="comment">// </span>
+<a name="l00123"></a>00123 <span class="comment">// Remove the "//" marks on the next line</span>
+<a name="l00124"></a>00124 <span class="comment">// to see this happen</span>
+<a name="l00125"></a>00125 <span class="comment">//TPtrC ptrc3 = bufc.Right(13);</span>
+<a name="l00126"></a>00126
+<a name="l00127"></a>00127 <span class="comment">// </span>
+<a name="l00128"></a>00128 <span class="comment">// Compare() & CompareF() * * * * * * * * *</span>
+<a name="l00129"></a>00129 <span class="comment">//</span>
+<a name="l00130"></a>00130 _LIT(KTxtCompare,<span class="stringliteral">"\n--->Compare() & CompareF()"</span>);
+<a name="l00131"></a>00131 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Printf(KTxtCompare);
+<a name="l00132"></a>00132 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Printf(KTxtPressToContinue); <span class="comment">//" (press any key to continue)\n"</span>
+<a name="l00133"></a>00133 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Getch();
+<a name="l00134"></a>00134
+<a name="l00135"></a>00135 <span class="comment">// Can compare any kind of data.</span>
+<a name="l00136"></a>00136 <span class="comment">// For binary data just use Compare().</span>
+<a name="l00137"></a>00137 <span class="comment">// For text use Compare(), CompareF() or </span>
+<a name="l00138"></a>00138 <span class="comment">// CompareC(). Using the Compare() function,</span>
+<a name="l00139"></a>00139 <span class="comment">// case is important so that, below, the 4th </span>
+<a name="l00140"></a>00140 <span class="comment">// comparison is equal but the 5th is unequal.</span>
+<a name="l00141"></a>00141
+<a name="l00142"></a>00142 <span class="keyword">const</span> TBufC<16> compstr[7] = {*&KTxtCompstr1, <span class="comment">// "Hello World!@@"</span>
+<a name="l00143"></a>00143 *&KTxtCompstr2, <span class="comment">// "Hello"</span>
+<a name="l00144"></a>00144 *&KTxtCompstr3, <span class="comment">// "Hello Worl"</span>
+<a name="l00145"></a>00145 *&KTxtCompstr4, <span class="comment">// "Hello World!"</span>
+<a name="l00146"></a>00146 *&KTxtCompstr5, <span class="comment">// "hello world!"</span>
+<a name="l00147"></a>00147 *&KTxtCompstr6, <span class="comment">// "Hello World "</span>
+<a name="l00148"></a>00148 *&KTxtCompstr7 <span class="comment">// "Hello World@"</span>
+<a name="l00149"></a>00149 };
+<a name="l00150"></a>00150
+<a name="l00151"></a>00151 <span class="keywordflow">for</span> (index = 0; index < 7; index++)
+<a name="l00152"></a>00152 {
+<a name="l00153"></a>00153
+<a name="l00154"></a>00154 <span class="keywordflow">if</span> ( (bufc.Compare(compstr[index])) < 0 )
+<a name="l00155"></a>00155 genptr.Set(KTxtlessthan);
+<a name="l00156"></a>00156 <span class="keywordflow">else</span> <span class="keywordflow">if</span> ( (bufc.Compare(compstr[index])) > 0)
+<a name="l00157"></a>00157 genptr.Set(KTxtgreaterthan);
+<a name="l00158"></a>00158 <span class="keywordflow">else</span> genptr.Set(KTxtequalto);
+<a name="l00159"></a>00159 _LIT(KFormat6,<span class="stringliteral">"\"%S\"%S\"%S\"\n"</span>);
+<a name="l00160"></a>00160 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Printf(KFormat6,&bufc,&genptr,&compstr[index]);
+<a name="l00161"></a>00161 }
+<a name="l00162"></a>00162
+<a name="l00163"></a>00163 <span class="comment">// CompareF() ignores case so that now,</span>
+<a name="l00164"></a>00164 <span class="comment">// both the 4th and the 5th comparsions</span>
+<a name="l00165"></a>00165 <span class="comment">// are equal.</span>
+<a name="l00166"></a>00166 <span class="comment">// NOTE that the behaviour of CompareF() is locale dependent.</span>
+<a name="l00167"></a>00167 <span class="keywordflow">for</span> (index = 3; index < 5; index++)
+<a name="l00168"></a>00168 {
+<a name="l00169"></a>00169 <span class="keywordflow">if</span> ( (bufc.CompareF(compstr[index])) < 0 )
+<a name="l00170"></a>00170 genptr.Set(KTxtlessthan);
+<a name="l00171"></a>00171 <span class="keywordflow">else</span> <span class="keywordflow">if</span> ( (bufc.CompareF(compstr[index])) > 0)
+<a name="l00172"></a>00172 genptr.Set(KTxtgreaterthan);
+<a name="l00173"></a>00173 <span class="keywordflow">else</span> genptr.Set(KTxtequalto);
+<a name="l00174"></a>00174 _LIT(KTxtusingCF,<span class="stringliteral">" (using CompareF())"</span>);
+<a name="l00175"></a>00175 _LIT(KFormat7,<span class="stringliteral">"\"%S\"%S\"%S\"%S\n"</span>);
+<a name="l00176"></a>00176 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Printf(KFormat7,&bufc,&genptr,&compstr[index],&KTxtusingCF);
+<a name="l00177"></a>00177 }
+<a name="l00178"></a>00178
+<a name="l00179"></a>00179 <span class="comment">// </span>
+<a name="l00180"></a>00180 <span class="comment">// Locate(), LocateF(), LocateReverse() * * *</span>
+<a name="l00181"></a>00181 <span class="comment">//</span>
+<a name="l00182"></a>00182 <span class="comment">// NOTE that the behaviour of LocateF() is locale dependent.</span>
+<a name="l00183"></a>00183 _LIT(KTxtLocate,<span class="stringliteral">"\n--->Locate(), LocateF() & LocateReverse()"</span>);
+<a name="l00184"></a>00184 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Printf(KTxtLocate);
+<a name="l00185"></a>00185 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Printf(KTxtPressToContinue); <span class="comment">//" (press any key to continue)\n"</span>
+<a name="l00186"></a>00186 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Getch();
+<a name="l00187"></a>00187
+<a name="l00188"></a>00188 <span class="comment">// Locate the positions (i.e. the offsets) of</span>
+<a name="l00189"></a>00189 <span class="comment">// these characters in "Hello World!" </span>
+<a name="l00190"></a>00190 TChar ch[4] = {<span class="charliteral">'H'</span>, <span class="charliteral">'!'</span>, <span class="charliteral">'o'</span>, <span class="charliteral">'w'</span>};
+<a name="l00191"></a>00191
+<a name="l00192"></a>00192 <span class="comment">// using Locate().</span>
+<a name="l00193"></a>00193 <span class="comment">// Note that 'w' is not found because the</span>
+<a name="l00194"></a>00194 <span class="comment">// function is case sensitive</span>
+<a name="l00195"></a>00195 _LIT(KTxtUsingLocate,<span class="stringliteral">"using Locate() \n"</span>);
+<a name="l00196"></a>00196 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Printf(KTxtUsingLocate);
+<a name="l00197"></a>00197 <span class="keywordflow">for</span> (index = 0 ; index < 4; index++)
+<a name="l00198"></a>00198 {
+<a name="l00199"></a>00199 pos = bufc.Locate(ch[index]);
+<a name="l00200"></a>00200
+<a name="l00201"></a>00201 <span class="keywordflow">if</span> (pos < 0)
+<a name="l00202"></a>00202 genptr.Set(KTxtnotfound);
+<a name="l00203"></a>00203 <span class="keywordflow">else</span>
+<a name="l00204"></a>00204 genptr.Set(KTxtfound);
+<a name="l00205"></a>00205
+<a name="l00206"></a>00206 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Printf(KCommonFormat8,&bufc,TUint(ch[index]),pos,&genptr);
+<a name="l00207"></a>00207 }
+<a name="l00208"></a>00208
+<a name="l00209"></a>00209 <span class="comment">// using LocateF()</span>
+<a name="l00210"></a>00210 <span class="comment">// Note that 'w' is found because the</span>
+<a name="l00211"></a>00211 <span class="comment">// function is NOT case sensitive.</span>
+<a name="l00212"></a>00212 <span class="comment">//</span>
+<a name="l00213"></a>00213 <span class="comment">// NOTE that the behaviour of LocateF() is locale dependent.</span>
+<a name="l00214"></a>00214 _LIT(KTxtUsingLocateF,<span class="stringliteral">"using LocateF() \n"</span>);
+<a name="l00215"></a>00215 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Printf(KTxtUsingLocateF);
+<a name="l00216"></a>00216 <span class="keywordflow">for</span> (index = 0 ; index < 4; index++)
+<a name="l00217"></a>00217 {
+<a name="l00218"></a>00218 pos = bufc.LocateF(ch[index]);
+<a name="l00219"></a>00219
+<a name="l00220"></a>00220 <span class="keywordflow">if</span> (pos < 0)
+<a name="l00221"></a>00221 genptr.Set(KTxtnotfound);
+<a name="l00222"></a>00222 <span class="keywordflow">else</span>
+<a name="l00223"></a>00223 genptr.Set(KTxtfound);
+<a name="l00224"></a>00224
+<a name="l00225"></a>00225 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Printf(KCommonFormat8,&bufc,TUint(ch[index]),pos,&genptr);
+<a name="l00226"></a>00226 }
+<a name="l00227"></a>00227
+<a name="l00228"></a>00228 <span class="comment">// using LocateReverse()</span>
+<a name="l00229"></a>00229 <span class="comment">// Note that the 2nd char 'o' is found this time</span>
+<a name="l00230"></a>00230 _LIT(KTxtUsingLocateReverse,<span class="stringliteral">"using LocateReverse() \n"</span>);
+<a name="l00231"></a>00231 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Printf(KTxtUsingLocateReverse);
+<a name="l00232"></a>00232 <span class="keywordflow">for</span> (index = 0 ; index < 4; index++)
+<a name="l00233"></a>00233 {
+<a name="l00234"></a>00234 pos = bufc.LocateReverse(ch[index]);
+<a name="l00235"></a>00235
+<a name="l00236"></a>00236 <span class="keywordflow">if</span> (pos < 0)
+<a name="l00237"></a>00237 genptr.Set(KTxtnotfound);
+<a name="l00238"></a>00238 <span class="keywordflow">else</span>
+<a name="l00239"></a>00239 genptr.Set(KTxtfound);
+<a name="l00240"></a>00240
+<a name="l00241"></a>00241 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Printf(KCommonFormat8,&bufc,TUint(ch[index]),pos,&genptr);
+<a name="l00242"></a>00242 }
+<a name="l00243"></a>00243
+<a name="l00244"></a>00244 <span class="comment">// </span>
+<a name="l00245"></a>00245 <span class="comment">// Match() & MatchF() * * * * * * *</span>
+<a name="l00246"></a>00246 <span class="comment">//</span>
+<a name="l00247"></a>00247 <span class="comment">//</span>
+<a name="l00248"></a>00248 <span class="comment">// NOTE that the behaviour of MatchF() is locale dependent.</span>
+<a name="l00249"></a>00249 _LIT(KTxtMatch,<span class="stringliteral">"\n--->Match()"</span>);
+<a name="l00250"></a>00250 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Printf(KTxtMatch);
+<a name="l00251"></a>00251 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Printf(KTxtPressToContinue); <span class="comment">//" (press any key to continue)\n"</span>
+<a name="l00252"></a>00252 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Getch();
+<a name="l00253"></a>00253
+<a name="l00254"></a>00254
+<a name="l00255"></a>00255 TBufC<8> matchstr[7] = {*&KTxtMatchstr1, <span class="comment">// "*World*"</span>
+<a name="l00256"></a>00256 *&KTxtMatchstr2, <span class="comment">// "*W?rld*"</span>
+<a name="l00257"></a>00257 *&KTxtMatchstr3, <span class="comment">// "Wor*"</span>
+<a name="l00258"></a>00258 *&KTxtMatchstr4, <span class="comment">// "Hello"</span>
+<a name="l00259"></a>00259 *&KTxtMatchstr5, <span class="comment">// "*W*"</span>
+<a name="l00260"></a>00260 *&KTxtMatchstr6, <span class="comment">// "hello*"</span>
+<a name="l00261"></a>00261 *&KTxtMatchstr7 <span class="comment">// "*" </span>
+<a name="l00262"></a>00262 };
+<a name="l00263"></a>00263
+<a name="l00264"></a>00264
+<a name="l00265"></a>00265 _LIT(KFormat10,<span class="stringliteral">"\"%S\"\n"</span>);
+<a name="l00266"></a>00266 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Printf(KFormat10,&bufc);
+<a name="l00267"></a>00267
+<a name="l00268"></a>00268 <span class="comment">// using Match()</span>
+<a name="l00269"></a>00269 <span class="keywordflow">for</span> (index = 0 ; index < 7; index++)
+<a name="l00270"></a>00270 {
+<a name="l00271"></a>00271 pos = bufc.Match(matchstr[index]);
+<a name="l00272"></a>00272
+<a name="l00273"></a>00273 <span class="keywordflow">if</span> (pos < 0)
+<a name="l00274"></a>00274 genptr.Set(KTxtnotfound);
+<a name="l00275"></a>00275 <span class="keywordflow">else</span>
+<a name="l00276"></a>00276 genptr.Set(KTxtfound);
+<a name="l00277"></a>00277
+<a name="l00278"></a>00278 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Printf(KCommonFormat9,&matchstr[index],pos,&genptr);
+<a name="l00279"></a>00279 }
+<a name="l00280"></a>00280
+<a name="l00281"></a>00281 <span class="comment">// using MatchF()</span>
+<a name="l00282"></a>00282 <span class="comment">// </span>
+<a name="l00283"></a>00283 <span class="comment">// Note the different result when matching </span>
+<a name="l00284"></a>00284 <span class="comment">// the 6th string, where case is ignored.</span>
+<a name="l00285"></a>00285 <span class="comment">//</span>
+<a name="l00286"></a>00286 <span class="comment">// NOTE that the behaviour of MatchF() is locale dependent.</span>
+<a name="l00287"></a>00287 _LIT(KTxtMatchF,<span class="stringliteral">"\n--->MatchF()"</span>);
+<a name="l00288"></a>00288 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Printf(KTxtMatchF);
+<a name="l00289"></a>00289 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Printf(KTxtPressToContinue); <span class="comment">//" (press any key to continue)\n"</span>
+<a name="l00290"></a>00290 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Getch();
+<a name="l00291"></a>00291
+<a name="l00292"></a>00292 <span class="keywordflow">for</span> (index = 0 ; index < 7; index++)
+<a name="l00293"></a>00293 {
+<a name="l00294"></a>00294 pos = bufc.MatchF(matchstr[index]);
+<a name="l00295"></a>00295
+<a name="l00296"></a>00296 <span class="keywordflow">if</span> (pos < 0)
+<a name="l00297"></a>00297 genptr.Set(KTxtnotfound);
+<a name="l00298"></a>00298 <span class="keywordflow">else</span>
+<a name="l00299"></a>00299 genptr.Set(KTxtfound);
+<a name="l00300"></a>00300
+<a name="l00301"></a>00301 <a class="code" href="dbllist_8cpp.html#d789d40251baeb2f60e118de4856583d">console</a>->Printf(KCommonFormat9,&matchstr[index],pos,&genptr);
+<a name="l00302"></a>00302 }
+<a name="l00303"></a>00303 }
+<a name="l00304"></a>00304
+<a name="l00305"></a>00305
+<a name="l00306"></a>00306
+<a name="l00307"></a>00307
+<a name="l00308"></a>00308
+<a name="l00309"></a>00309
+<a name="l00310"></a>00310
+</pre></div><hr size="1"><address style="text-align: right;"><small>Generated on Thu Jan 21 10:32:55 2010 for TB10.1 Example Applications by
+<a href="http://www.doxygen.org/index.html">
+<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.3 </small></address>
+</body>
+</html>