How can I split the string like
"-3.0*6.7+(5/2)*-0.8--12.98+4^-0.5"
by using regex expression to
-3.0,*,6.7,+,(,5,/,2,),*,-0.8,-,-12.98,+,4,^,-0.5
thanks in advance
|
It is impractical to use regex for this task: you'd better create some sort of tokenizer/lexer to create tokens from your input source. Especially the unary minus signs make this hard for a regex split. But to answer you question, you could split on the following pattern:
which means:
|
||||
|
|
|
I am assuming you ultimately want to evaluate this expression. Here's a code that evaluates arithmetic expressions. It supports the basic arithmetic operators over integers + parenthesis. It should be quite easy to adapt it to support floating point literals.
|
||||
|
|
"4-3"? – KennyTM May 7 '11 at 13:04