<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="fa">
	<id>https://fa.wikinoor.ir/w/index.php?action=history&amp;feed=atom&amp;title=%D8%A7%D9%84%DA%AF%D9%88%3AStrfind_short%2Fdoc</id>
	<title>الگو:Strfind short/doc - تاریخچهٔ نسخه‌ها</title>
	<link rel="self" type="application/atom+xml" href="https://fa.wikinoor.ir/w/index.php?action=history&amp;feed=atom&amp;title=%D8%A7%D9%84%DA%AF%D9%88%3AStrfind_short%2Fdoc"/>
	<link rel="alternate" type="text/html" href="https://fa.wikinoor.ir/w/index.php?title=%D8%A7%D9%84%DA%AF%D9%88:Strfind_short/doc&amp;action=history"/>
	<updated>2026-06-17T08:57:51Z</updated>
	<subtitle>تاریخچهٔ نسخه‌ها برای این صفحه در ویکی</subtitle>
	<generator>MediaWiki 1.39.0</generator>
	<entry>
		<id>https://fa.wikinoor.ir/w/index.php?title=%D8%A7%D9%84%DA%AF%D9%88:Strfind_short/doc&amp;diff=629595&amp;oldid=prev</id>
		<title>Wikinoor.ir: ۱ نسخه واردشده</title>
		<link rel="alternate" type="text/html" href="https://fa.wikinoor.ir/w/index.php?title=%D8%A7%D9%84%DA%AF%D9%88:Strfind_short/doc&amp;diff=629595&amp;oldid=prev"/>
		<updated>2023-01-03T19:44:40Z</updated>

		<summary type="html">&lt;p&gt;۱ نسخه واردشده&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;fa&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;→ نسخهٔ قدیمی‌تر&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;نسخهٔ ‏۳ ژانویهٔ ۲۰۲۳، ساعت ۲۳:۱۴&lt;/td&gt;
				&lt;/tr&gt;
&lt;!-- diff cache key fawiki:diff::1.12:old-629594:rev-629595 --&gt;
&lt;/table&gt;</summary>
		<author><name>Wikinoor.ir</name></author>
	</entry>
	<entry>
		<id>https://fa.wikinoor.ir/w/index.php?title=%D8%A7%D9%84%DA%AF%D9%88:Strfind_short/doc&amp;diff=629594&amp;oldid=prev</id>
		<title>fa&gt;GKFX: elaborate</title>
		<link rel="alternate" type="text/html" href="https://fa.wikinoor.ir/w/index.php?title=%D8%A7%D9%84%DA%AF%D9%88:Strfind_short/doc&amp;diff=629594&amp;oldid=prev"/>
		<updated>2021-12-29T13:01:58Z</updated>

		<summary type="html">&lt;p&gt;elaborate&lt;/p&gt;
&lt;p&gt;&lt;b&gt;صفحهٔ تازه&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{Documentation subpage}}&lt;br /&gt;
{{Lua|Module:String}}&lt;br /&gt;
&lt;br /&gt;
{{tlx|strfind short|''target''|''string''}} outputs the position in ''target'' where ''string'' first appears (e.g. an output of &amp;quot;3&amp;quot; would mean beginning at the third character in ''target''). If ''string'' is not found, it outputs zero (0). The word &amp;quot;short&amp;quot; in the title is a relic of the pre-[[WP:Lua|Lua]] implementation and has no meaning for the current version. This template is a simple wrapper around {{ml|string|find|section=#find}}, which may be used directly for more options.&lt;br /&gt;
{{clear}}&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
Use {{pf|ifexpr}} to concisely determine if this outputs zero, which lets you check if one string contains another. For example, Does &amp;quot;A Funny Thing Happened on the Way to the Forum (film)&amp;quot; contain &amp;quot;on the&amp;quot;?&lt;br /&gt;
{{markup|&lt;br /&gt;
&amp;lt;nowiki&amp;gt;{{#ifexpr: {{strfind short|&lt;br /&gt;
    A Funny Thing Happened on the Way to the Forum (film)|on the}}&lt;br /&gt;
    | It does. | It doesn't. }}&amp;lt;/nowiki&amp;gt;|{{#ifexpr: {{strfind short|&lt;br /&gt;
    A Funny Thing Happened on the Way to the Forum (film)|on the}}&lt;br /&gt;
    | It does. | It doesn't. }}}}&amp;lt;!-- Template:Mra --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Sample output:&lt;br /&gt;
{{Aligned table |class=nowrap&lt;br /&gt;
 |col1style=text-align:left; padding-right:2.0em; |col2style=text-align:center;| row1header = yes&lt;br /&gt;
 | Example | Output&lt;br /&gt;
 | &amp;lt;code&amp;gt;{{((}}strfind short {{!}}abcdef {{!}}bcd{{))}}&amp;lt;/code&amp;gt;      |  {{strfind short|abcdef|bcd}}&lt;br /&gt;
 | &amp;lt;code&amp;gt;{{((}}strfind short {{!}}123456789. {{!}}45{{))}}&amp;lt;/code&amp;gt;   |  {{strfind short|123456789.|45}}&lt;br /&gt;
 | &amp;lt;code&amp;gt;{{((}}strfind short {{!}}x+2.437-6 {{!}}2.43{{))}}&amp;lt;/code&amp;gt;  |  {{strfind short|x+2.437-6|2.43}}&lt;br /&gt;
 | &amp;lt;code&amp;gt;{{((}}strfind short {{!}}:***abcd** {{!}}*ab{{))}}&amp;lt;/code&amp;gt;  |  {{strfind short|:***abcd**|*ab}}&lt;br /&gt;
 | &amp;lt;code&amp;gt;{{((}}strfind short {{!}}Fast Forward (film) {{!}}( {{))}}&amp;lt;/code&amp;gt;  |  {{strfind short|Fast Forward (film)|(}}&lt;br /&gt;
 | &amp;lt;code&amp;gt;{{((}}strfind short {{!}}Fast Forward Longer (film) {{!}}( {{))}}&amp;lt;/code&amp;gt;  |  {{strfind short|Fast Forward Longer (film)|(}}&lt;br /&gt;
 | &amp;lt;code&amp;gt;{{((}}strfind short {{!}}A Funny Thing Happened on the Way to the Forum (film) {{!}}( {{))}}&amp;lt;/code&amp;gt;  |  {{strfind short|A Funny Thing Happened on the Way to the Forum (film)|(&amp;lt;!--?: |1 --&amp;gt;}}&lt;br /&gt;
 | &amp;lt;code&amp;gt;{{((}}strfind short {{!}}abcdef {{!}}x{{))}}&amp;lt;/code&amp;gt;        |  {{strfind short|abcdef|x}}&lt;br /&gt;
 | &amp;lt;code&amp;gt;{{((}}strfind short {{!}}abcdef {{!}}xyz{{))}}&amp;lt;/code&amp;gt;      |  {{strfind short|abcdef|xyz}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
{{String-handling templates |anlys/tech}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;includeonly&amp;gt;{{Sandbox other|&lt;br /&gt;
| &amp;lt;!-- Categories below this line, please: --&amp;gt;&lt;br /&gt;
[[Category:String manipulation templates]]&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>fa&gt;GKFX</name></author>
	</entry>
</feed>