how could i make an sCommandArg but for tags in VB? I've noticed that feature in stuffplug: (!XTALK
<language> <text>). I've tried to make it like this:
code:
If (StrComp(sTag, "(!XTAG)", vbTextCompare) = 0) Then
sResult = Mid$(sTag, 7, 1)
ParseTag = True
Exit Function
End If
(it should get the next 2 characters after
(!XTAG. If the user types
(!XTAG23) then sResult = 23)
Is it even possible in VB?