• You didn't mention where in your pipeline you were trying to accomplish this. If you are in a Script Task, you could do something simple like:

    string checkString = "0z700";

    while (checkString.StartsWith("0")) {

    checkString = checkString.Remove(0, 1);

    }



    Rick Krueger

    Follow @dataogre