scan-string <string> [ start-with <start with> ] [ length <length> ] \ for <for string> \ status <status>Copied!
set-string s = "wow this is a string!" scan-string s start-with 3 length 13 for "this" status pos if-true pos equal 4 @Found string where it should be! end-ifCopied!
set-string s = "wow this is a string!" scan-string s for 'g' status pos if-true pos equal 19 @Found character where it should be! end-ifCopied!