Is there a brief subroutine or function in FTN95 that can take two strings as arguments, and tell me if String A is present in String B?
If I have:
CHARACTER5 StringA CHARACTER250 StringB StringA='Hello' StringB='Is Jim writing yet another Hello World program?'
Is there a function or something, that can return a positive integer value (or a logical .TRUE.) if StringA is present in StringB, as it is in this example?
SCAN won't quite do it - I believe it tells me if any single character from StringB is present in StringA. (correct?)