View source code
							
							
						
								Display the source code in std/string.d from which this
								page was generated on github.
							
						
							Report a bug
							
						
								If you spot a problem with this page, click here to create a
								Bugzilla issue.
							
						
							
								Improve this page
							
							
					
								Quickly fork, edit online, and submit a pull request for this page.
								Requires a signed-in GitHub account. This works well for small changes.
								If you'd like to make larger changes you may want to consider using
								local clone.
							
						Function std.string.lastIndexOfNeither
Returns the last index of the first occurence of any character that is not
    an elements in needles in haystack. If all element of
    haystack are element of needles -1 is returned.
						
				ptrdiff_t lastIndexOfNeither(Char, Char2)
				(
				
				  const(Char)[] haystack,
				
				  const(Char2)[] needles,
				
				  in CaseSensitive cs = Yes
				) pure @safe
				
				if (isSomeChar!Char && isSomeChar!Char2);
				
				
				ptrdiff_t lastIndexOfNeither(Char, Char2)
				(
				
				  const(Char)[] haystack,
				
				  const(Char2)[] needles,
				
				  in size_t stopIdx,
				
				  in CaseSensitive cs = Yes
				) pure @safe
				
				if (isSomeChar!Char && isSomeChar!Char2);
						
					
				Parameters
| Name | Description | 
|---|---|
| haystack | String to search for needles in. | 
| needles | Strings to search for in haystack. | 
| stopIdx | slices haystack like this haystack[0 .. stopIdx]If
            the stopIdx is greater than or equal to the length of haystack the
            functions returns-1. | 
| cs | Indicates whether the comparisons are case sensitive. | 
Example
writeln(lastIndexOfNeither("abba", "a")); // 2
writeln(lastIndexOfNeither("def", "f")); // 1
Example
writeln(lastIndexOfNeither("def", "rsa", 3)); // -1
writeln(lastIndexOfNeither("abba", "a", 2)); // 1
Authors
Walter Bright, Andrei Alexandrescu, Jonathan M Davis, and David L. 'SpottedTiger' Davis
License
					Copyright © 1999-2024 by the D Language Foundation | Page generated by ddox.