本文整理匯總了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);
}