Converter.CorrectExpressionString Method
Modifies initial math expression represented as a string in order to change
Decimal Symbol and Arguments Separators delimiters.
Namespace: SMath.ManagerAssembly: SMath.Manager (in SMath.Manager.dll) Version: 1.73.9126.0
public static string CorrectExpressionString(
string value,
char decimalSymbolFrom,
char decimalSymbolTo,
char argumentsSeparatorFrom,
char argumentsSeparatorTo
)
Public Shared Function CorrectExpressionString (
value As String,
decimalSymbolFrom As Char,
decimalSymbolTo As Char,
argumentsSeparatorFrom As Char,
argumentsSeparatorTo As Char
) As String
public:
static String^ CorrectExpressionString(
String^ value,
wchar_t decimalSymbolFrom,
wchar_t decimalSymbolTo,
wchar_t argumentsSeparatorFrom,
wchar_t argumentsSeparatorTo
)
static member CorrectExpressionString :
value : string *
decimalSymbolFrom : char *
decimalSymbolTo : char *
argumentsSeparatorFrom : char *
argumentsSeparatorTo : char -> string
- value String
-
Initial math expression to modify.
- decimalSymbolFrom Char
-
Decimal Symbol to remove.
- decimalSymbolTo Char
-
Decimal Symbol to insert.
- argumentsSeparatorFrom Char
-
Arguments separator to remove.
- argumentsSeparatorTo Char
-
Arguments separator to insert.
String
Returns string of mathematical expression with modified separators.