func TrimBeforeFirst(s, substr string) string {
    switch ls, lsub := len(s), len(substr); {
    case ls == 0 || lsub == 0:
        return s
    case ls < lsub: