asc-community/AngouriMath

Variable with number in name

Angelo50 opened this issue · 3 comments

Hi, First, Great job
Simple question, Is it possible to use entity name with number in as follow
I mean:
If I execute the following:

        Entity expr = "2 + 3";
        Entity expr2 = "2 + 3 + R3";
        Console.WriteLine(expr2.Evaled);

Then the result is :
5 + R ^ 3

I would like to have
5 + R3

Can you help ?

Thanks

Hi!

You can't do R3, but you can do R_3:
image

Thanks a lot :)

:)