Program Name: ASP's Sky Thief
Program type: thief, not very elegant, haha~
Latest version: No version, because I will not update anymore, I will modify it myself if I have any problems
Procedure introduction: There is nothing to say about this ~ Everyone knows
Program author: Brother Xiao Fei (This ID has been blocked, hey, I made a mistake)
Download address: Many people already have it now~ I don’t have to ask me for it anymore!
The following is what I wrote to a friend about how to modify this thief and don’t know how to play with it. Let’s take a look at it yourself~
In fact, it is easy to change another thief.
Hoho~
Description of the functions used
=============================================================================================
Instr()
The function returns the position where a character or string first appears in another string.
Expression Instr([start,]strToBeSearched,strSearchFor[,compare])
Allow data type: Start is the starting value of the search, strToBeSearched accepts the search string strSearchFor characters to be searched.compare comparison method (see ASP constant for details)
Example: <%
strText="Thisisastest!!"
pos=Instr(strText,"a")
response.writepos
%>
Return result: 9
=============================================================================================
Mid()
The function returns a string of a specific length (start, length is length).
Expression Mid(string,start[,length])
Example: <%
strTest="Thisistest!TodayisMonday."
response.writeMid(strTest,17,5)
%>
Return result: Today
==========================================================================================
Abs(numerical)
Absolute value. The absolute value of a number is its positive value. The absolute value of an empty string (null) is also an empty string. Uninitialized variable, which is absolutely 0
Example: <%
response.writeABS(-2000)
%>
Return result: 2000
==========================================================================================
Replace(string expression, findnreplace with[,start[,count[,compare]]])
Replace a string in part. Find the original string to be replaced, and if found, it will be replaced with the new string (replacewith).
find: The original string to be searched for.
replacewith: The word that replaces.
start: Start looking for replacement from the first word, if not set, start looking for the first word.
count: The number of times replaced. If not set, all the found strings are replaced by strings.
compare: Find a comparison method. Compare=0 represents binary comparison method. Compare=1 represents text comparison method. Compare=2 represents text comparison method according to the data pattern of comparison. If comparison is omitted, it is a preset binary comparison method.