<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://ubersoft.org/Sputnik/wiki/skins/common/feed.css?301"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
		<id>http://ubersoft.org/Sputnik/wiki/index.php?action=history&amp;feed=atom&amp;title=Core_Function_LastIndexNotOf</id>
		<title>Core Function LastIndexNotOf - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://ubersoft.org/Sputnik/wiki/index.php?action=history&amp;feed=atom&amp;title=Core_Function_LastIndexNotOf"/>
		<link rel="alternate" type="text/html" href="http://ubersoft.org/Sputnik/wiki/index.php?title=Core_Function_LastIndexNotOf&amp;action=history"/>
		<updated>2026-05-16T10:05:06Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.17.0</generator>

	<entry>
		<id>http://ubersoft.org/Sputnik/wiki/index.php?title=Core_Function_LastIndexNotOf&amp;diff=4644&amp;oldid=prev</id>
		<title>UberFoX: 1 revision</title>
		<link rel="alternate" type="text/html" href="http://ubersoft.org/Sputnik/wiki/index.php?title=Core_Function_LastIndexNotOf&amp;diff=4644&amp;oldid=prev"/>
				<updated>2015-06-14T12:37:24Z</updated>
		
		<summary type="html">&lt;p&gt;1 revision&lt;/p&gt;
&lt;table style=&quot;background-color: white; color:black;&quot;&gt;
		&lt;tr valign='top'&gt;
		&lt;td colspan='1' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan='1' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 12:37, 14 June 2015&lt;/td&gt;
		&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>UberFoX</name></author>	</entry>

	<entry>
		<id>http://ubersoft.org/Sputnik/wiki/index.php?title=Core_Function_LastIndexNotOf&amp;diff=4643&amp;oldid=prev</id>
		<title>UberFoX: 1 revision</title>
		<link rel="alternate" type="text/html" href="http://ubersoft.org/Sputnik/wiki/index.php?title=Core_Function_LastIndexNotOf&amp;diff=4643&amp;oldid=prev"/>
				<updated>2014-08-11T21:40:59Z</updated>
		
		<summary type="html">&lt;p&gt;1 revision&lt;/p&gt;
&lt;table style=&quot;background-color: white; color:black;&quot;&gt;
		&lt;tr valign='top'&gt;
		&lt;td colspan='1' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan='1' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 21:40, 11 August 2014&lt;/td&gt;
		&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>UberFoX</name></author>	</entry>

	<entry>
		<id>http://ubersoft.org/Sputnik/wiki/index.php?title=Core_Function_LastIndexNotOf&amp;diff=2458&amp;oldid=prev</id>
		<title>UberFoX: Created page with &quot;&lt;pre&gt; LastIndexNotOf( &lt;expression&gt;, &lt;needle&gt;, &lt;pos&gt;, &lt;case&gt;, &lt;count&gt; ) &lt;/pre&gt;  === Description ===  Reports the index of the last none occurrence of the specified string in the c...&quot;</title>
		<link rel="alternate" type="text/html" href="http://ubersoft.org/Sputnik/wiki/index.php?title=Core_Function_LastIndexNotOf&amp;diff=2458&amp;oldid=prev"/>
				<updated>2013-08-21T13:33:20Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;&amp;lt;pre&amp;gt; LastIndexNotOf( &amp;lt;expression&amp;gt;, &amp;lt;needle&amp;gt;, &amp;lt;pos&amp;gt;, &amp;lt;case&amp;gt;, &amp;lt;count&amp;gt; ) &amp;lt;/pre&amp;gt;  === Description ===  Reports the index of the last none occurrence of the specified string in the c...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
LastIndexNotOf( &amp;lt;expression&amp;gt;, &amp;lt;needle&amp;gt;, &amp;lt;pos&amp;gt;, &amp;lt;case&amp;gt;, &amp;lt;count&amp;gt; )&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Description ===&lt;br /&gt;
&lt;br /&gt;
Reports the index of the last none occurrence of the specified string in the current string.&lt;br /&gt;
&lt;br /&gt;
Parameters specify the starting search position in the current string and the type of search to use for the specified string.&lt;br /&gt;
&lt;br /&gt;
=== expression ===&lt;br /&gt;
&lt;br /&gt;
The string to use.&lt;br /&gt;
&lt;br /&gt;
=== needle ===&lt;br /&gt;
&lt;br /&gt;
The string to find.&lt;br /&gt;
&lt;br /&gt;
=== pos ===&lt;br /&gt;
&lt;br /&gt;
Optional; Position to start the search from within the expression.&lt;br /&gt;
&lt;br /&gt;
Default: expression length - 1&lt;br /&gt;
&lt;br /&gt;
=== case ===&lt;br /&gt;
&lt;br /&gt;
Optional; Case sensitive option&lt;br /&gt;
&lt;br /&gt;
false = Case sensitive search&lt;br /&gt;
&lt;br /&gt;
true = Case insensitive search&lt;br /&gt;
&lt;br /&gt;
Default: false&lt;br /&gt;
&lt;br /&gt;
=== count ===&lt;br /&gt;
&lt;br /&gt;
Optional; The amount of characters to check before quitting the search&lt;br /&gt;
&lt;br /&gt;
Default: pos + 1&lt;br /&gt;
&lt;br /&gt;
=== Return Value ===&lt;br /&gt;
&lt;br /&gt;
Success: Returns last position of the found string in the string that does not match the needle.&lt;br /&gt;
&lt;br /&gt;
Failure: Returns -1.&lt;br /&gt;
&lt;br /&gt;
=== Remarks ===&lt;br /&gt;
&lt;br /&gt;
It a match is found when using a string needle it will skip that many characters before continuing the search to avoid it stopping inside a partial match.&lt;br /&gt;
&lt;br /&gt;
=== Example ===&lt;br /&gt;
&lt;br /&gt;
Case sensitive&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sputnik&amp;quot;&amp;gt;&lt;br /&gt;
// Find characters&lt;br /&gt;
println(   LastIndexNotOf(&amp;quot;FoX The quick brown FoX&amp;quot;, &amp;quot;F&amp;quot;)   );&lt;br /&gt;
// Find string&lt;br /&gt;
println(   LastIndexNotOf(&amp;quot;cat The quick brown FoX cat&amp;quot;, &amp;quot;cat&amp;quot;)   );&lt;br /&gt;
println(   LastIndexNotOf(&amp;quot;FoX The quick brown FoX cat&amp;quot;, &amp;quot;FoX&amp;quot;)   );&lt;br /&gt;
println(   LastIndexNotOf(&amp;quot;FoX The quick brown FoX&amp;quot;, &amp;quot;brown FoX&amp;quot;)   );&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Case insensitive&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;sputnik&amp;quot;&amp;gt;&lt;br /&gt;
// Find characters&lt;br /&gt;
my $str = &amp;quot;FoX The quick brown FoX&amp;quot;;&lt;br /&gt;
println(   LastIndexNotOf($str , &amp;quot;F&amp;quot;, strlen($str) - 1, true)   );&lt;br /&gt;
// Find string&lt;br /&gt;
my $str = &amp;quot;cat The quick brown FoX cat&amp;quot;;&lt;br /&gt;
println(   LastIndexNotOf(&amp;quot;cat The quick brown FoX cat&amp;quot;, &amp;quot;cat&amp;quot;, strlen($str) - 1, true)   );&lt;br /&gt;
my $str = &amp;quot;FoX The quick brown FoX cat&amp;quot;;&lt;br /&gt;
println(   LastIndexNotOf(&amp;quot;FoX The quick brown FoX cat&amp;quot;, &amp;quot;FoX&amp;quot;, strlen($str) - 1, true)   );&lt;br /&gt;
my $str = &amp;quot;FoX The quick brown FoX&amp;quot;;&lt;br /&gt;
println(   LastIndexNotOf(&amp;quot;FoX The quick brown FoX&amp;quot;, &amp;quot;brown FoX&amp;quot;, strlen($str) - 1, true)   );&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Core Function]]&lt;/div&gt;</summary>
		<author><name>UberFoX</name></author>	</entry>

	</feed>