InStrRev Function [VBA]

የ ሀረግ ቦታ ይመልሳል በ ሌላ ሀረግ ውስጥ: ከ ሀረጉ በ ቀኝ በኩል በ መጀመር

warning

This constant, function or object is enabled with the statement Option VBASupport 1 placed before the executable program code in a module.


The InStrRev function returns the position at which the match was found, from the right. If the string was not found, the function returns 0.

አገባብ:


InStrRev (StringCheck As String, StringMatch As String [,Start As Long] [, Compare As Integer])

ዋጋ ይመልሳል:

Long

ደንቦች:

StringCheck: The string expression that you want to search.

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

መጀመሪያ: የ ቁጥር መግለጫ ምልክት የሚያደርግ በ ቦታ ውስጥ ከ ግራ በኩል በ ሀረግ ውስጥ ንዑስ ሀረግ የሚጀምርበት: እርስዎ ይህን ደንብ ካስቀሩ: መፈለጊያ በዚህ ባህሪ ሀረግ መጨረሻ ላይ ይጀምራል: ከፍተኛው የ ተፈቀደው ዋጋ 65535. ነው

ማወዳደሪያ: በ ምርጫ የ ቁጥር መግለጫ የ ተገለጸውን የ ማነፃፀሪያ አይነት: የዚህ ደንብ ዋጋ መሆን ይችላል

1: ነባር ዋጋ ለ 1 የሚወስነው የ ጽሁፍ ማነፃፀሪያ ነው: ፊደል-መመጠኛ ያልሆነ

0: የዚህ ዋጋ 0 የሚወስነው የ binary ማነፃፀሪያ ነው: ፊደል-መመጠኛ ያልሆነ

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

የ ስህተት ኮዶች:

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

ለምሳሌ:


Sub ExamplePosition
Dim sInput As String
Dim iPos As Integer
 sInput = "The book is on the table"
 iPos = InStrRev(sInput,"the",10,1) ' Returns 1, search is case-insensitive
 Print iPos 
 iPos = InStrRev(sInput,"the",10,0) ' Returns 0, search is case-sensitive
 Print iPos
End Sub

Please support us!