如何執行此任務?如何替換二維字符串數組中的值
int Amount, x=1000,y=200;
string BasedOn="x*12/100+y*5/100";
//In place of x and y in BasedOn I want to replace with x,y values like (1000*12%+200*5%)
//and the calculated result(130) should be assigned to Amount variable
現在,我拆支持算法FMP串
string[][] strings = BasedOn
.Split(new char[] { '+' }, StringSplitOptions.RemoveEmptyEntries)
.Select(w => w.Split('*').ToArray())
.ToArray();
下一步做什麼?請幫幫我。
此代碼會拋出異常。 – mybirthname
@mybirthname固定。 –
@UmutSeven在var v = dt.Comput(BasedOn,「」)處得到SyntaxExceptionError(無法解釋位置2處的標記''') –