InStr Function

ይመልሳል የ ሀረግ ቦታ በ ሌላ ሀረግ ውስጥ

ተመሳሳይ የ ተገኘበትን ቦታ ይመልሳል ተመሳሳይ የ ተገኘበትን: ሀረጉ ካልተገኘ: ተጋር ይመልሳል 0

አገባብ:


InStr ([Start As Long,] String1 As String, String2 As String[, Compare As Integer]) As Integer

ዋጋ ይመልሳል:

Integer

ደንቦች:

Start: A numeric expression that marks the position in a string where the search for the specified substring starts. If you omit this parameter, the search starts at the first character of the string. The minimum allowed value is 1. The maximum allowed value is 2,147,483,648.

String1: The string expression being searched.

String2: The string expression that you want to search for.

Compare: Optional type of comparison. The value can be 0 or 1. The default value of 1 specifies case-insensitive. The value of 0 specifies case-sensitive.

note

Case-insensitive comparison may use locale specifics, for example, "s" may match "β".


To avoid a run-time error, do not set the Compare parameter if the Start parameter is omitted.

የ ስህተት ኮዶች:

5 ዋጋ የሌለው የ አሰራር ጥሪ

ለምሳሌ:


Sub ExamplePosition
  Const sCalc = "LibreOffice Calc"

  Instr(sCalc, "calc")     ' returns 13
  Instr(String1:=sCalc, String2:="calc", Start:=1)  ' returns 13
  Instr(11, sCalc, "c")     ' returns 13
  Instr(11, sCalc, "c",  1) ' returns 13
  Instr(11, sCalc, "c",  0) ' returns 16
End Sub

Please support us!