find()函数怎么用
发布网友
发布时间:2022-02-26 11:23
我来回答
共3个回答
热心网友
时间:2022-02-26 12:52
Find函数用来对原始数据中某个字符串进行定位,以确定其位置。Find函数进行定位时,总是从指定位置开始,返回找到的第一个匹配字符串的位置,而不管其后是否还有相匹配的字符串。
使用语法
FIND(find_text,within_text,start_num)
Find_text 是要查找的文本。
Within_text 是包含要查找文本的文本。
Start_num 指定开始进行查找的字符。within_text 中的首字符是编号为 1 的字符。如果忽略 start_num,则假设其为 1。
热心网友
时间:2022-02-26 14:10
帮你查一下MSDN
template<class InIt, class T>
InIt find(InIt first, InIt last, const T& val);
The template function determines the lowest value of N in the range [0, last - first) for which the predicate *(first + N) == val is true. It then returns first + N. If no such value exists, the function returns last. It evaluates the predicate once, at most, for each N.
热心网友
时间:2022-02-26 15:45
查MSDN。。追问莫有啊
追答网上有在线版的
http://msdn.microsoft.com/en-us/library/h64454kx(VS.71).aspx