Intern — Middle
Subtracting one string from another
livecode
Task condition
Implement a function that takes two strings as input — a string source and a substring prefix. If source starts with prefix, the function should return source without this initial fragment; otherwise, return source unchanged. Example: input data "Hello World" and "World" → result "Hello".