Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,14 @@
|
|||
Function TopNTail(s,mode)
|
||||
Select Case mode
|
||||
Case "top"
|
||||
TopNTail = Mid(s,2,Len(s)-1)
|
||||
Case "tail"
|
||||
TopNTail = Mid(s,1,Len(s)-1)
|
||||
Case "both"
|
||||
TopNTail = Mid(s,2,Len(s)-2)
|
||||
End Select
|
||||
End Function
|
||||
|
||||
WScript.Echo "Top: UPRAISERS = " & TopNTail("UPRAISERS","top")
|
||||
WScript.Echo "Tail: UPRAISERS = " & TopNTail("UPRAISERS","tail")
|
||||
WScript.Echo "Both: UPRAISERS = " & TopNTail("UPRAISERS","both")
|
||||
Loading…
Add table
Add a link
Reference in a new issue