3个回答
展开全部
Find函数用来对原始数据中某个字符串进行定位,以确定其位置。Find函数进行定位时,总是从指定位置开始,返回找到的第一个匹配字符串的位置,而不管其后是否还有相匹配的字符串。
使用语法
FIND(find_text,within_text,start_num)
Find_text 是要查找的文本。
Within_text 是包含要查找文本的文本。
Start_num 指定开始进行查找的字符。within_text 中的首字符是编号为 1 的字符。如果忽略 start_num,则假设其为 1。
使用语法
FIND(find_text,within_text,start_num)
Find_text 是要查找的文本。
Within_text 是包含要查找文本的文本。
Start_num 指定开始进行查找的字符。within_text 中的首字符是编号为 1 的字符。如果忽略 start_num,则假设其为 1。
更多追问追答
追问
我要 “AAA:BB” 或“AAA:BBB ”或“AAA:BBBB”,中“:”的后面的值。
追答
嗯,好办。假设你的数据在A1单元格中。
=MID(A1,FIND(":",A1)+1,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.
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.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
查MSDN。。
追问
莫有啊
追答
网上有在线版的
http://msdn.microsoft.com/en-us/library/h64454kx(VS.71).aspx
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询