Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 julioarriaga
		
			julioarriaga
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		I see that both functions, Index and FindOneOf, pretty much do the same thing:
 
					
				
		
 Lisa_P
		
			Lisa_P
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Index is looking for a substring (all characters in substring)
eg
Index('thequickbrownfox', 'kb') Returns 8
FindOneOf is looking for any character
eg
Index('thequickbrownfox', 'hx') Returns 2
 
					
				
		
 Lisa_P
		
			Lisa_P
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Index is looking for a substring (all characters in substring)
eg
Index('thequickbrownfox', 'kb') Returns 8
FindOneOf is looking for any character
eg
Index('thequickbrownfox', 'hx') Returns 2
