public string RightOf(string input, string value)
        {
            string result = CommonStringExtensions.RightOf(input, value);

            PexAssert.IsNotNull(result);
            PexAssert.IsTrue(result.Length <= input.Length);

            return(result);
        }
        public string RightOf(string input, string value, int skip, StringComparison comparisonType)
        {
            string result = CommonStringExtensions.RightOf(input, value, skip, comparisonType);

            PexAssert.IsNotNull(result);
            PexAssert.IsTrue(result.Length <= input.Length);

            return(result);
        }
        public string RightOf(string input, char character, int skip)
        {
            string result = CommonStringExtensions.RightOf(input, character, skip);

            PexAssert.IsNotNull(result);
            PexAssert.IsTrue(result.Length <= input.Length);

            return(result);
        }