|
-
Dec 12th, 2009, 01:38 AM
#1
Thread Starter
Lively Member
Richtextbox instance of string search
I want to get a string from the richtextbox but here how it goes
in programming for example i want to get all class/function and variable names in this given code.
Private Function Processstring(ByVal strin As String) As String
Dim astrWords As String() = New String() {"parrot"}
Dim strOut As String = strin
Dim strWord As String
For Each strWord In astrWords
If strin.indexOf(strWord, 0) >= 0 Then
strOut = strWord
Exit For
End If
Next
Return strOut
End Function
how would i get the "processstring" by getting it after the word function?
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|