(Convert infix to postfix) Write a method that converts an infix expression into a postfix expression using the following header:
public static String infixToPostfix(String expression)
For example, the method should convert the infix expression $(1+2)-3$ to $12+3=$ and $2=(1+3)$ to $213+=$.