theservant
Programmer
I have a textbox that have certain formulas which can change for example I have the following:
text1.text="ac123+af221*3-ag001"
I want to take a formula and seperate the string into different textboxes:
text2.text="ac123"
text3.text="+"
text4.text="af221"
text5.text="3"
text6.text="ag001"
Is there any way that this can be done
text1.text="ac123+af221*3-ag001"
I want to take a formula and seperate the string into different textboxes:
text2.text="ac123"
text3.text="+"
text4.text="af221"
text5.text="3"
text6.text="ag001"
Is there any way that this can be done