Click here to Skip to main content
15,912,977 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Analize the body of the mail Pin
Joshua Quick15-Jan-06 8:37
Joshua Quick15-Jan-06 8:37 
QuestionRe: Analize the body of the mail Pin
Ekans15-Jan-06 10:26
Ekans15-Jan-06 10:26 
AnswerRe: Analize the body of the mail Pin
Joshua Quick15-Jan-06 11:59
Joshua Quick15-Jan-06 11:59 
GeneralRe: Analize the body of the mail Pin
Ekans15-Jan-06 12:01
Ekans15-Jan-06 12:01 
QuestionRe: Analize the body of the mail Pin
Ekans18-Jan-06 17:03
Ekans18-Jan-06 17:03 
AnswerRe: Analize the body of the mail Pin
Joshua Quick18-Jan-06 17:10
Joshua Quick18-Jan-06 17:10 
QuestionRe: Analize the body of the mail Pin
Ekans18-Jan-06 17:15
Ekans18-Jan-06 17:15 
AnswerRe: Analize the body of the mail Pin
Joshua Quick18-Jan-06 17:37
Joshua Quick18-Jan-06 17:37 
Finding a sub-string within a string is easy. You just call String.IndexOf(). I showed you this before.
Dim myString As String = "I like www.google.com."<br />
If (myString.IndexOf("www.google.com") >= 0) Then<br />
   ' Found it!<br />
End If


Finding a particular string pattern such as an URL is a lot harder. This requires regular expression.
QuestionRe: Analize the body of the mail Pin
Ekans18-Jan-06 17:47
Ekans18-Jan-06 17:47 
AnswerRe: Analize the body of the mail Pin
Joshua Quick18-Jan-06 18:16
Joshua Quick18-Jan-06 18:16 
AnswerRe: Analize the body of the mail Pin
Ekans19-Jan-06 10:47
Ekans19-Jan-06 10:47 
QuestionHow to use FolderBrowserDialog? Pin
Zenly14-Jan-06 8:40
Zenly14-Jan-06 8:40 
AnswerRe: How to use FolderBrowserDialog? Pin
Joshua Quick14-Jan-06 9:23
Joshua Quick14-Jan-06 9:23 
GeneralRe: How to use FolderBrowserDialog? Pin
Zenly14-Jan-06 11:31
Zenly14-Jan-06 11:31 
AnswerRe: How to use FolderBrowserDialog? Pin
Dave Kreskowiak14-Jan-06 15:42
mveDave Kreskowiak14-Jan-06 15:42 
GeneralRe: How to use FolderBrowserDialog? Pin
Zenly21-Jan-06 18:53
Zenly21-Jan-06 18:53 
QuestionMagic Library Menu Control-Help Pin
bgc-waterman14-Jan-06 8:38
bgc-waterman14-Jan-06 8:38 
AnswerRe: Magic Library Menu Control-Help Pin
Robert Rohde14-Jan-06 22:06
Robert Rohde14-Jan-06 22:06 
QuestionRe: Magic Library Menu Control-Help Pin
bgc-waterman16-Jan-06 1:33
bgc-waterman16-Jan-06 1:33 
AnswerRe: Magic Library Menu Control-Help Pin
Robert Rohde16-Jan-06 6:46
Robert Rohde16-Jan-06 6:46 
GeneralRe: Magic Library Menu Control-Help Pin
bgc-waterman16-Jan-06 10:08
bgc-waterman16-Jan-06 10:08 
GeneralRe: Magic Library Menu Control-Help Pin
bgc-waterman16-Jan-06 16:04
bgc-waterman16-Jan-06 16:04 
GeneralRe: Magic Library Menu Control-Help Pin
Robert Rohde16-Jan-06 20:32
Robert Rohde16-Jan-06 20:32 
GeneralRe: Magic Library Menu Control-Help Pin
bgc-waterman17-Jan-06 16:28
bgc-waterman17-Jan-06 16:28 
GeneralRe: Magic Library Menu Control-Help Pin
Robert Rohde17-Jan-06 19:53
Robert Rohde17-Jan-06 19:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.