Exporting help in the Markdown table format

TO SUPPORT MY WORK, ORDER A COMMERCIAL LICENSE
THANK YOU!

The tutorial consists of more than 200 live examples from 50 sections. Each of the examples can be copied and run on your own environment. In addition, mXparser provides an extensive collection of over 500 built-in math functions, expressions and symbols. Familiarize yourself with the scope and the syntax. Live testing is the best way to learn. Good luck! 🙂

Tutorial Math Collection API spec Download

Below is the code for JAVA, the code for C# is almost identical. To copy the code, double-click inside the frame.

List of available options

// JAVA: import org.mariuszgromada.math.mxparser.*;
// C#: using org.mariuszgromada.math.mxparser;
// ...

// Only built-in elements
String mXparser.getHelpAsMarkdownTable();
String mXparser.getHelpAsMarkdownTable(String query);
String mXparser.getHelpAsMarkdownTable(
      boolean addHeader
      ,boolean addCaption
      ,String caption
);
String mXparser.getHelpAsMarkdownTable(
      String query
      ,boolean addHeader
      ,boolean addCaption
      ,String caption
);
// JAVA: import org.mariuszgromada.math.mxparser.*;
// C#: using org.mariuszgromada.math.mxparser;
// ...

// Also with user-defined elements, when e is an instance of Expression
String e.getHelpAsMarkdownTable();
String e.getHelpAsMarkdownTable(String query);
String e.getHelpAsMarkdownTable(
      boolean addHeader
      ,boolean addCaption
      ,String caption
);
String e.getHelpAsMarkdownTable(
      String query
      ,boolean addHeader
      ,boolean addCaption
      ,String caption
);

Query parameter syntax

For a basic in-line search, simply provide a word (e.g.: "sine") in the query parameter.
Advanced search is also possible, please use one of the tags below when formatting the query parameter:
  • "key=" – keyword (e.g.: "key=sin")
  • "desc=" – description (e.g.: "desc=trigonometric"),
  • "syn=" – syntax (e.g.: "syn=sin")
  • "type=" – type (e.g.: "type=unit")
  • "since=" – since (e.g.: "since=4.1")
  • "typeid=" – please refer to parser tokens (e.g.: "typeid=3")
  • "keyid=" – please refer to parser tokens (e.g.: "keyid=1004").

Only one tag can be used per search.

Other parameters

Other parameters are self-explanatory by their names. In case you need more details please refer the API documentation.

Case 1: Output with header + standard caption + advanced search

// JAVA: import org.mariuszgromada.math.mxparser.*;
// C#: using org.mariuszgromada.math.mxparser;
// ...
String helpMarkdown = mXparser.getHelpAsMarkdownTable(
		"type=Bitwise operator"
		,true
		,true
		,""
);

mXparser.consolePrint("\n");
mXparser.consolePrintln(helpMarkdown);
[mXparser-v.5.2.0] 
### Help content limited to query: 'type=Bitwise operator'
|Keyword|Type|Syntax|Since|Description|
|---|---|---|---|---|
|@~|Bitwise operator|@~a|4.0|Bitwise unary complement - Bitwise operator|
|@&|Bitwise operator|a @& b|4.0|Bitwise and AND - Bitwise operator|
|@^|Bitwise operator|a @^ b|4.0|Bitwise exclusive or XOR - Bitwise operator|
|@\||Bitwise operator|a @\| b|4.0|Bitwise inclusive or OR - Bitwise operator|
|@<<|Bitwise operator|a @<< b|4.0|Signed left shift - Bitwise operator|
|@>>|Bitwise operator|a @>> b|4.0|Signed right shift - Bitwise operator|
Above Markdown code rendering

Help content limited to query: ‘type=Bitwise operator’

Keyword Type Syntax Since Description
@~ Bitwise operator @~a 4.0 Bitwise unary complement – Bitwise operator
@& Bitwise operator a @& b 4.0 Bitwise and AND – Bitwise operator
@^ Bitwise operator a @^ b 4.0 Bitwise exclusive or XOR – Bitwise operator
@| Bitwise operator a @| b 4.0 Bitwise inclusive or OR – Bitwise operator
@<< Bitwise operator a @<< b 4.0 Signed left shift – Bitwise operator
@>> Bitwise operator a @>> b 4.0 Signed right shift – Bitwise operator

Case 2: Output with header + user caption + advanced search

// JAVA: import org.mariuszgromada.math.mxparser.*;
// C#: using org.mariuszgromada.math.mxparser;
// ...
String helpMarkdown = mXparser.getHelpAsMarkdownTable(
		"type=Bitwise operator"
		,true
		,true
		,"This is a caption"
);

mXparser.consolePrint("\n");
mXparser.consolePrintln(helpMarkdown);
[mXparser-v.5.2.0] 
### This is a caption
|Keyword|Type|Syntax|Since|Description|
|---|---|---|---|---|
|@~|Bitwise operator|@~a|4.0|Bitwise unary complement - Bitwise operator|
|@&|Bitwise operator|a @& b|4.0|Bitwise and AND - Bitwise operator|
|@^|Bitwise operator|a @^ b|4.0|Bitwise exclusive or XOR - Bitwise operator|
|@\||Bitwise operator|a @\| b|4.0|Bitwise inclusive or OR - Bitwise operator|
|@<<|Bitwise operator|a @<< b|4.0|Signed left shift - Bitwise operator|
|@>>|Bitwise operator|a @>> b|4.0|Signed right shift - Bitwise operator|
Above Markdown code rendering

This is a caption

Keyword Type Syntax Since Description
@~ Bitwise operator @~a 4.0 Bitwise unary complement – Bitwise operator
@& Bitwise operator a @& b 4.0 Bitwise and AND – Bitwise operator
@^ Bitwise operator a @^ b 4.0 Bitwise exclusive or XOR – Bitwise operator
@| Bitwise operator a @| b 4.0 Bitwise inclusive or OR – Bitwise operator
@<< Bitwise operator a @<< b 4.0 Signed left shift – Bitwise operator
@>> Bitwise operator a @>> b 4.0 Signed right shift – Bitwise operator

Case 3: Output with header and no caption + advanced search

// JAVA: import org.mariuszgromada.math.mxparser.*;
// C#: using org.mariuszgromada.math.mxparser;
// ...
String helpMarkdown = mXparser.getHelpAsMarkdownTable(
		"type=Bitwise operator"
		,true
		,false
		,"This is a caption"
);

mXparser.consolePrint("\n");
mXparser.consolePrintln(helpMarkdown);
[mXparser-v.5.2.0] 
|Keyword|Type|Syntax|Since|Description|
|---|---|---|---|---|
|@~|Bitwise operator|@~a|4.0|Bitwise unary complement - Bitwise operator|
|@&|Bitwise operator|a @& b|4.0|Bitwise and AND - Bitwise operator|
|@^|Bitwise operator|a @^ b|4.0|Bitwise exclusive or XOR - Bitwise operator|
|@\||Bitwise operator|a @\| b|4.0|Bitwise inclusive or OR - Bitwise operator|
|@<<|Bitwise operator|a @<< b|4.0|Signed left shift - Bitwise operator|
|@>>|Bitwise operator|a @>> b|4.0|Signed right shift - Bitwise operator|
Above Markdown code rendering
Keyword Type Syntax Since Description
@~ Bitwise operator @~a 4.0 Bitwise unary complement – Bitwise operator
@& Bitwise operator a @& b 4.0 Bitwise and AND – Bitwise operator
@^ Bitwise operator a @^ b 4.0 Bitwise exclusive or XOR – Bitwise operator
@| Bitwise operator a @| b 4.0 Bitwise inclusive or OR – Bitwise operator
@<< Bitwise operator a @<< b 4.0 Signed left shift – Bitwise operator
@>> Bitwise operator a @>> b 4.0 Signed right shift – Bitwise operator

Case 4: Output with no header and no caption + advanced search

// JAVA: import org.mariuszgromada.math.mxparser.*;
// C#: using org.mariuszgromada.math.mxparser;
// ...
String helpMarkdown = mXparser.getHelpAsMarkdownTable(
		"type=Bitwise operator"
		,false
		,false
		,""
);

mXparser.consolePrint("\n");
mXparser.consolePrintln(helpMarkdown);
[mXparser-v.5.2.0] 
|   |   |   |   |   |
|---|---|---|---|---|
|@~|Bitwise operator|@~a|4.0|Bitwise unary complement - Bitwise operator|
|@&|Bitwise operator|a @& b|4.0|Bitwise and AND - Bitwise operator|
|@^|Bitwise operator|a @^ b|4.0|Bitwise exclusive or XOR - Bitwise operator|
|@\||Bitwise operator|a @\| b|4.0|Bitwise inclusive or OR - Bitwise operator|
|@<<|Bitwise operator|a @<< b|4.0|Signed left shift - Bitwise operator|
|@>>|Bitwise operator|a @>> b|4.0|Signed right shift - Bitwise operator|
Above Markdown code rendering
@~ Bitwise operator @~a 4.0 Bitwise unary complement – Bitwise operator
@& Bitwise operator a @& b 4.0 Bitwise and AND – Bitwise operator
@^ Bitwise operator a @^ b 4.0 Bitwise exclusive or XOR – Bitwise operator
@| Bitwise operator a @| b 4.0 Bitwise inclusive or OR – Bitwise operator
@<< Bitwise operator a @<< b 4.0 Signed left shift – Bitwise operator
@>> Bitwise operator a @>> b 4.0 Signed right shift – Bitwise operator
Nuget – Package Manager

Install-Package MathParser.org-mXparser -Version 5.2.1

Nuget – .NET CLI

dotnet add package MathParser.org-mXparser --version 5.2.1

Nuget – Package Reference

<PackageReference Include="MathParser.org-mXparser" Version="5.2.1"/>

Maven – Dependency

<dependency>
<groupid>
org.mariuszgromada.math</groupid>
<artifactid>
MathParser.org-mXparser</artifactid>
<version>
5.2.1</version>
</dependency>

Maven – Gradle

implementation 'org.mariuszgromada.math:MathParser.org-mXparser:5.2.1'

Maven – Gradle (Kotlin)

implementation("org.mariuszgromada.math:MathParser.org-mXparser:5.2.1")

GitHub

git clone https://github.com/mariuszgromada/MathParser.org-mXparser

OTHER DOWNLOAD OPTIONS

Download latest release – v.5.2.1 Orion: .NET bin onlyDownload latest release – v.5.2.1 Orion: JAVA bin onlyDownload latest release – v.5.2.1 Orion: bin + doc

NEWS FROM MATHPARSER.ORG
SOURCE CODE

Source code .zipSource code .tar.gz
View on GitHubMathSpace.pl

My other creative spaces

DONATION
Did you find the software useful?
Please consider donation 🙂
DONATE