> For the complete documentation index, see [llms.txt](https://docs.pentaho.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.pentaho.com/analyzer-external-javascript-api/cv-apis-pentaho-analyzer-external-javascript-api-cp/utility-apis-pentaho-analyzer-external-javascript-api.md).

# Utility APIs

The utility system definition for `cv.api` class (`cv.api.util`). Contains all utility related API calls.

## Constructor

| Name         | Description                                                                    |
| ------------ | ------------------------------------------------------------------------------ |
| `new util()` | Utility definition for `cv.api` class. Contains all utility related API calls. |

## Methods

| Name                                               | Description                                                                                                                                |
| -------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ |
| `parseMDXExpression(formula, escapeHTML) : string` | Given an MDX formula, `parseMDXExpression` returns the last token in the formula. For example, `[Product].[Trucks]` would return 'Trucks'. |

## Constructor Details

| `new util()`                                                                                                                                                                                                                                                                                          |
| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| <p>Utility definition for <code>cv.api</code> class.</p><ul><li><strong>Source</strong></li></ul><p><a href="https://github.com/pentaho/pentaho-analyzer/tree/master/b/pentaho/p-analyzer/client/src/main/javascript/scripts/cv_api_util.js#L28">javascript/scripts/cv\_api\_util.js, line 28</a></p> |

\## Methods Details

<table data-header-hidden><thead><tr><th></th><th></th><th></th></tr></thead><tbody><tr><td><code>parseMDXExpression(formula, escapeHTML) : string</code></td><td></td><td></td></tr><tr><td><p>Given an MDX formula, <code>parseMDXExpression</code> returns the last token in the formula. For example,<code>[Product].[Trucks]</code> would return 'Trucks'.- <strong>Since</strong></p><p>5.4</p><ul><li><strong>Source</strong></li></ul><p><a href="https://github.com/pentaho/pentaho-analyzer/tree/master/b/pentaho/p-analyzer/client/src/main/javascript/scripts/cv_api_util.js#L317">javascript/scripts/cv_api_util.js, line 317</a></p><ul><li><strong>Parameters</strong></li><li><strong>Returns</strong></li><li><p><strong>Example</strong></p><pre class="language-javascript"><code class="lang-javascript">
</code></pre></li></ul><p>cv.api.util.parseMDXExpression("[Product].[Truck]")</p><p>// Return Value: "Truck"</p><pre><code>```
</code></pre></td><td></td><td></td></tr><tr><td>Name</td><td>Default Value</td><td>Summary</td></tr><tr><td><code>formula : string</code></td><td></td><td>This is the MDX formula to be parsed by the function.</td></tr><tr><td><code>escapeHTML : boolean</code></td><td></td><td>This is an optional parameter. If provided, the string parsed from the MDX expression will be returned with HTML reserved characters as escaped.</td></tr><tr><td>Name</td><td>Description</td><td></td></tr><tr><td><code>string</code></td><td>This is the MDX formula parsed as a string.</td><td></td></tr></tbody></table>

| Name     | Description                                 |
| -------- | ------------------------------------------- |
| `string` | This is the MDX formula parsed as a string. |

| Name                   | Default Value | Summary                                                                                                                                          |
| ---------------------- | ------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ |
| `formula : string`     |               | This is the MDX formula to be parsed by the function.                                                                                            |
| `escapeHTML : boolean` |               | This is an optional parameter. If provided, the string parsed from the MDX expression will be returned with HTML reserved characters as escaped. |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.pentaho.com/analyzer-external-javascript-api/cv-apis-pentaho-analyzer-external-javascript-api-cp/utility-apis-pentaho-analyzer-external-javascript-api.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
