本文整理汇总了C#中SimpleCalculator.Parse.formatInput方法的典型用法代码示例。如果您正苦于以下问题:C# Parse.formatInput方法的具体用法?C# Parse.formatInput怎么用?C# Parse.formatInput使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SimpleCalculator.Parse
的用法示例。
在下文中一共展示了Parse.formatInput方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ParseAddSpacesToUserInputIfEnteredWithoutThemTest2
public void ParseAddSpacesToUserInputIfEnteredWithoutThemTest2()
{
Parse test = new Parse();
string input = "100 /-4";
string actual = test.formatInput(input);
string expected = "100 / -4";
Assert.AreEqual(expected, actual);
}
示例2: Main
static void Main(string[] args)
{
Parse userInput = new Parse();
Evaluate expression = new Evaluate();
Stack stack = new Stack();
bool runProgram = true;
int counter = 0;
while (runProgram)
{
Console.Write("[" + counter + "]> ");
string response = Console.ReadLine();
if (response == "exit" || response == "quit")
{
Console.WriteLine("Bye!! \nPress any key to close program...");
runProgram = false;
Console.ReadKey();
}
else if(response == "lastq")
{
Console.WriteLine(" " + stack.LastExpression);
}
else if (response == "last")
{
Console.WriteLine(" " + stack.LastAnswer);
}
else
{
string splitResponse = userInput.formatInput(response);
if (splitResponse == "Invalid Expression. Please try again!")
{
Console.WriteLine(splitResponse);
}
else
{
userInput.splitString(splitResponse);
decimal user_answer =
expression.calculate(userInput.FirstNumber, userInput.Operator, userInput.SecondNumber);
counter += 1;
Console.WriteLine(" " + "=" + " " + user_answer);
stack.LastExpression = response;
stack.LastAnswer = user_answer;
}
}
}
}
示例3: ParseGetFormatStringUsingRegexTest2
public void ParseGetFormatStringUsingRegexTest2()
{
Parse test = new Parse();
string str = "-9876 / - 45";
string actual = test.formatInput(str);
string expected = "Invalid Expression. Please try again!";
Assert.AreEqual(expected, actual);
}