Guest User

Untitled

a guest
Jul 18th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <cfoutput>
  2. <cfset stringToSearch = "The quick brown fox specs jumped over the lazy dog.">
  3. #find("the",stringToSearch)#<br>
  4. #find("the",stringToSearch,35)#<br>
  5. #find("no such substring",stringToSearch)#<br>
  6. <br>
  7. #findnocase("the",stringToSearch)#<br>
  8. #findnocase("the",stringToSearch,5)#<br>
  9. #findnocase("no such substring",stringToSearch)#<br>
  10. <br>
  11. #findoneof("aeiou",stringToSearch)#<br>
  12. #findoneof("aeiou",stringToSearch,4)#<br>
  13. #findoneof("@%^*()",stringToSearch)#<br>
  14. </cfoutput>
Add Comment
Please, Sign In to add comment