home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri Kaikille K-CD 2002 #3 / K-CD_2002-03.iso / OpenOffice / f_0046 / sbasic.jar / text / sbasic / common / 03120401.xml < prev    next >
Extensible Markup Language  |  2001-09-07  |  2KB  |  36 lines

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <html><head><title>InStr Function [Runtime]</title><meta name="filename" content="text/sbasic/common/03120401"/><help:css-file-link xmlns:help="http://openoffice.org/2000/help"/><!--The CSS style header method for setting styles--><style type="text/css">
  3.  
  4.         p.P1{
  5.                 }
  6.         span.T1{
  7.                 font-weight:bold;}
  8.         </style></head><body>
  9.   
  10.   
  11.   <help:to-be-embedded Eid="instr" xmlns:help="http://openoffice.org/2000/help">
  12.   <p class="Head1"><help:link Id="66402">InStr Function [Runtime]</help:link></p>
  13.   <p class="Paragraph">Returns the position of a string within another string.</p>
  14.   </help:to-be-embedded>
  15.   <p class="Paragraph">The Instr function returns the position at which the match was found. If the string was not found, the function returns 0.</p>
  16.   <p class="Paragraph"><span class="T1">Syntax</span>:</p>
  17.   <p class="Paragraph">InStr ([Start As Integer,] Text1 As String, Text2 As String[, Compare]) <help:key-word value="InStr" tag="kw66402_1" xmlns:help="http://openoffice.org/2000/help"/></p>
  18.   <p class="Paragraph"><span class="T1">Return value</span>:</p>
  19.   <p class="Paragraph">Integer</p>
  20.   <p class="Paragraph"><span class="T1">Parameter</span>:</p>
  21.   <p class="Paragraph">Start: Any numeric expression that sets the position within the string at which to start searching for a given substring. If this parameter is omitted, the search starts at the first character.</p>
  22.   <p class="Paragraph">Text1: String expression in which to search.</p>
  23.   <p class="Paragraph">Text2: String expression to search for.</p>
  24.   <p class="Paragraph">Compare: Optional numeric expression that defines the type of comparison. This parameter can be 0 or 1. The default value 0 specifies a binary comparison; 1 specifies a text comparison (not case-sensitive).</p>
  25.   <p class="Paragraph">The parameter Compare should not be set, if the first return parameter is omitted. Otherwise it comes to a run time error.</p>
  26.   <p class="Paragraph"><span class="T1">Example:</span></p>
  27.   <p class="PropText">Sub ExamplePosition</p>
  28.   <p class="PropText">Dim sInput As String</p>
  29.   <p class="PropText">Dim iPos as Integer</p>
  30.   <p class="PropText"/>
  31.   <p class="PropText">sInput = "Star Office"</p>
  32.   <p class="PropText">iPos = Instr(sInput,"v")</p>
  33.   <p class="PropText">print iPos</p>
  34.   <p class="PropText">end sub</p>
  35.   <p class="PropText"/>
  36.  </body></html>