Data update
This commit is contained in:
parent
4bb20c9b71
commit
cbaf4c4b64
12390 changed files with 318560 additions and 27248 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