- Home
·
- String Manipulation
·
- String parsing. Good if you're making a program like command prompt which uses command input.
String parsing. Good if you're making a program like command prompt which uses command input.
String parsing. Good if you're making a program like command prompt which uses command input.
API Declarations
Start with "Sub Main"
Rate String parsing. Good if you're making a program like command prompt which uses command input.
(1(1 Vote))
Sub Main()
TheString = "message Hello!"
ParseText TheString
ParseText "appcmd quit"
End Sub
Sub ParseText(Text As String)
Parse = Split(Text, " ")
If Parse(0) = "message" Then
MsgBox Parse(1)
End If
If Parse(0) = "appcmd" Then
If Parse(1) = "quit" Then MsgBox "End of program...": End
End If
End Sub
String parsing. Good if you're making a program like command prompt which uses command input. Comments
No comments yet — be the first to post one!
Post a Comment