Return a filename at its suffix offset
1 2 at-suffix: func [ 3 "Return the filename or url at its suffix; or NONE." 4 string [any-string!] 5 ][ 6 find string suffix? string 7 ]
13498 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
1 2 at-suffix: func [ 3 "Return the filename or url at its suffix; or NONE." 4 string [any-string!] 5 ][ 6 find string suffix? string 7 ]