fn substring_after(s1: &str, s2: &str) -> String
If s2 is found inside s1, return everything after s2. Return all of s1 otherwise.