Exemplo n.º 1
0
        public void CSharp_Right()
        {
            var str = "testing";

            str = BRBFunctions_CSharp.Right(str, 4);
            Assert.AreEqual("ting", str);
        }
Exemplo n.º 2
0
        public void CSharp_Mid()
        {
            var str = "testing";

            str = BRBFunctions_CSharp.Mid(str, 5, 3);
            Assert.AreEqual("ing", str);
        }
Exemplo n.º 3
0
        public void CSharp_Left()
        {
            var str = "testing";

            str = BRBFunctions_CSharp.Left(str, 3);
            Assert.AreEqual("tes", str);
        }