I have a string which is entered by users which can have custom defined functions.
We are using Ncalc to do the evaluations using "EvaluateFunction" event.
I would like to know if there is a way to get the functions user has entered.
example string by user : FunA(1,3) + FunB(4) + 5
I need to find the custom functions user has entered .. so as a result i should get a list {FunA(1,3) , FunB(4)}
Is there a way to get this using nCalc?