<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>find函数</title>
	<atom:link href="https://www.aitaocui.cn/tag/238766/feed" rel="self" type="application/rss+xml" />
	<link>https://www.aitaocui.cn</link>
	<description>翡翠玉石爱好者聚集地</description>
	<lastBuildDate>Sun, 27 Nov 2022 07:05:11 +0000</lastBuildDate>
	<language>zh-CN</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.1</generator>

<image>
	<url>https://www.aitaocui.cn/wp-content/uploads/2022/11/taocui.png</url>
	<title>find函数</title>
	<link>https://www.aitaocui.cn</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>find函数(对数据中某个字符串进行定位的函数)</title>
		<link>https://www.aitaocui.cn/article/350627.html</link>
					<comments>https://www.aitaocui.cn/article/350627.html#respond</comments>
		
		<dc:creator><![CDATA[取法乎上]]></dc:creator>
		<pubDate>Sun, 27 Nov 2022 07:05:11 +0000</pubDate>
				<category><![CDATA[知识]]></category>
		<category><![CDATA[find函数]]></category>
		<guid isPermaLink="false">https://www.aitaocui.cn/?p=350627</guid>

					<description><![CDATA[Find函数用来对原始数据中某个字符串进行定位，以确定其位置。Find函数进行定位时，总是从指定位置开始，返回找到的第一个匹配字符串的位置，而不管其后是否还有相匹配的字符串。 使用...]]></description>
										<content:encoded><![CDATA[</p>
<article>
<p>Find函数用来对原始数据中某个字符串进行定位，以确定其位置。Find函数进行定位时，总是从指定位置开始，返回找到的第一个匹配字符串的位置，而不管其后是否还有相匹配的字符串。</p>
</article>
<article>
<h1>使用语法</h1>
<p>FIND(find_text,within_text,start_num)</p>
</p>
<p>FIND(find_text,within_text,start_num)</p>
</p>
<p>Find_text是要查找的字符串。</p>
</p>
<p>Within_text是包含要查找关键字的单元格。就是说要在这个单元格内查找关键字</p>
</p>
<p>Start_num指定开始进行查找的字符数。比如Start_num为5，则从单元格内第五个字符开始查找关键字。</p>
</p>
<h1>注意</h1>
<p>文本字符串“AYF0093.YoungMensApparel”，如果要查找文本字符串中说明部分的第一个“Y”的编号，则可将start_num设置为8，这样就不会查找文本的序列号部分。FIND将从第8个字符开始查找，而在下一个字符处即可找到find_text，于是返回编号9。FIND总是从within_text的起始处返回字符编号，如果start_num大于1，也会对跳过的字符进行计数。</p>
</p>
<p>如果find_text是空文本()，则FIND则会返回数值1。</p>
</p>
<p>Find_text中不能包含通配符。</p>
</p>
<p>如果within_text中没有find_text，则FIND返回错误值#VALUE!。</p>
</p>
<p>如果start_num不大于0，则FIND返回错误值#VALUE!。</p>
</p>
<p>如果start_num大于within_text的长度，则FIND返回错误值#VALUE!。</p>
</p>
<h1>应用示例</h1>
<p>A2=“广东省东莞市东城区…”，A3=“黑龙江省哈尔滨市…”;对含有不同地方的数据，利用“Find”函数，非常简单地确定“省”出现的位置。</p>
<h1>详细解释</h1>
<p>公式“=FIND(&quot;省&quot;,A2)”中，“省”表示要查找的文本为“省”，（实际使用中，也可以很长的一串字符）。要找查找的对象是A2单元格的内容“广东省东莞市东城区…”，因为没有指定起始位置，所以系统从第一位开始。返回的“3”，表示“省“字在第三位。</p>
</p>
<p>而公式“=FIND(&quot;省&quot;,A3)”中，“黑龙江省哈尔滨市…”则返回4。</p>
</p>
<p>注：FIND函数，第一位查找内容，如果是文本的话，必须添加英语输入法下的双引号，否则函数无法计算。</p>
</p>
<p>与Find类似，Search函数也有相同的功能。它们的区别是，Find区分大小写，而Search不分大小写（当被查找的文本为英文时）。</p>
</p>
<p>另外，在Excel中，对文本进行处理的很多函数都提供了一个特别用来处理双字节字符（如中文，日文）的函数，一般是在原函数后加“B”，如FIND,就有一个FINDB。LEFT,相对应的就是LEFTB等。其实，我们在实际应用中，使用不带“B”的函数就足够了。如果你想使用带“B”的函数，则要特别注意，尤其是在组合运用函数时，其中一个函数使用带“B”的形式，则其它有带“B”形式的函数，全部都要使用其带“B”的形式，否则结果极可能是错的。</p>
</p>
</article>
<div class="mt-3 mb-3" style="max-width: 770px;height: auto;">
                                    </div>
<div class="mt-3 mb-3" style="max-width: 770px;height: auto;">
                                    </div>
<div class="mt-3 mb-3" style="max-width: 770px;height: auto;">
                                    </div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.aitaocui.cn/article/350627.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
