<?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_LastIndexNotOfAny</id>
		<title>Core Function LastIndexNotOfAny - 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_LastIndexNotOfAny"/>
		<link rel="alternate" type="text/html" href="http://ubersoft.org/Sputnik/wiki/index.php?title=Core_Function_LastIndexNotOfAny&amp;action=history"/>
		<updated>2026-05-16T10:05:05Z</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_LastIndexNotOfAny&amp;diff=4646&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_LastIndexNotOfAny&amp;diff=4646&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_LastIndexNotOfAny&amp;diff=4645&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_LastIndexNotOfAny&amp;diff=4645&amp;oldid=prev"/>
				<updated>2014-08-11T21:41:00Z</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:41, 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_LastIndexNotOfAny&amp;diff=2459&amp;oldid=prev</id>
		<title>UberFoX: Created page with &quot;&lt;pre&gt; LastIndexNotOfAny( &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 any characters or array of...&quot;</title>
		<link rel="alternate" type="text/html" href="http://ubersoft.org/Sputnik/wiki/index.php?title=Core_Function_LastIndexNotOfAny&amp;diff=2459&amp;oldid=prev"/>
				<updated>2013-08-21T13:50:06Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;&amp;lt;pre&amp;gt; LastIndexNotOfAny( &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 any characters or array of...&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;
LastIndexNotOfAny( &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 any characters or array of strings in a specified 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 characters to not find OR an array of strings not 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 position of the last found character 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 string&lt;br /&gt;
println(   LastIndexNotOfAny(&amp;quot;The quick brown dog FoX cat&amp;quot;, &amp;quot;cat&amp;quot;)   );&lt;br /&gt;
println(   LastIndexNotOfAny(&amp;quot;The quick brown cat dog FoX&amp;quot;, &amp;quot;FoX&amp;quot;)   );&lt;br /&gt;
println(   LastIndexNotOfAny(&amp;quot;The quick brown FoX cat dog&amp;quot;, &amp;quot;dog&amp;quot;)   );&lt;br /&gt;
say &amp;quot;&amp;quot;;&lt;br /&gt;
// Find array of string&lt;br /&gt;
println(   LastIndexNotOfAny(&amp;quot;The quick brown dog FoX cat&amp;quot;, array(&amp;quot;FoX&amp;quot;, &amp;quot;cat&amp;quot;, &amp;quot;dog&amp;quot;))   );&lt;br /&gt;
println(   LastIndexNotOfAny(&amp;quot;The quick brown cat dog FoX&amp;quot;, array(&amp;quot;FoX&amp;quot;, &amp;quot;cat&amp;quot;, &amp;quot;dog&amp;quot;))   );&lt;br /&gt;
println(   LastIndexNotOfAny(&amp;quot;The quick brown FoX cat dog&amp;quot;, array(&amp;quot;FoX&amp;quot;, &amp;quot;cat&amp;quot;, &amp;quot;dog&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 string&lt;br /&gt;
my $str = &amp;quot;The quick brown dog FoX cat&amp;quot;;&lt;br /&gt;
println(   LastIndexNotOfAny($str, &amp;quot;cat&amp;quot;, strlen($str), true)   );&lt;br /&gt;
my $str = &amp;quot;The quick brown cat dog FoX&amp;quot;;&lt;br /&gt;
println(   LastIndexNotOfAny($str, &amp;quot;FoX&amp;quot;, strlen($str), true)   );&lt;br /&gt;
my $str = &amp;quot;The quick brown FoX cat dog&amp;quot;;&lt;br /&gt;
println(   LastIndexNotOfAny($str, &amp;quot;dog&amp;quot;, strlen($str), true)   );&lt;br /&gt;
say &amp;quot;&amp;quot;;&lt;br /&gt;
// Find array of string&lt;br /&gt;
my $str = &amp;quot;The quick brown dog FoX cat&amp;quot;;&lt;br /&gt;
println(   LastIndexNotOfAny($str, array(&amp;quot;FoX&amp;quot;, &amp;quot;cat&amp;quot;, &amp;quot;dog&amp;quot;), strlen($str), true)   );&lt;br /&gt;
my $str = &amp;quot;The quick brown cat dog FoX&amp;quot;;&lt;br /&gt;
println(   LastIndexNotOfAny($str, array(&amp;quot;FoX&amp;quot;, &amp;quot;cat&amp;quot;, &amp;quot;dog&amp;quot;), strlen($str), true)   );&lt;br /&gt;
my $str = &amp;quot;The quick brown FoX cat dog&amp;quot;;&lt;br /&gt;
println(   LastIndexNotOfAny($str, array(&amp;quot;FoX&amp;quot;, &amp;quot;cat&amp;quot;, &amp;quot;dog&amp;quot;), strlen($str), 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>