> For the complete documentation index, see [llms.txt](https://documentation.astera.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.astera.com/astera-data-stack-v10/functions/regular-expressions/replaceregex.md).

# ReplaceRegEx

| **Name**    | ***ReplaceRegEx***                                                                                                                                                                           |
| ----------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Syntax      | ReplaceRegEx (String pattern, String searchIn, String replaceWith)                                                                                                                           |
| Purpose     | To scan the input string for the specified pattern and replace it with the value specified in replaceWith parameter.                                                                         |
| Description | If the pattern is found, it is replaced with the ‘replaceWith’ parameter, and the resulting value is returned. Otherwise, the original value is returned.                                    |
| Return Type | String                                                                                                                                                                                       |
| Parameters  | <p>pattern \[System.String] – Regular expression pattern to match</p><p>searchIn \[System.String] – String to search for a match</p><p>replaceWith \[System.String] – Replacement string</p> |

![](/files/GkyDLKd1OPiRZ9sJ1dsK)

**Example**

In this example, we will pass the required parameters to the function transformation object using a *Variables* object.

Where,

*pattern* = (Mr|Mrs).

*searchIn* = Mr. John

*replaceWith* = Sir

![](/files/vrHeWdQmLArQ2FOokewo)

In the output window, you can see that Astera has returned a string value with the appended *replaceWith* value, as the specified *pattern* value was matched with the *searchIn* value.

![](/files/I7fF2YVdDpF9h2jz3nSr)


---

# 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://documentation.astera.com/astera-data-stack-v10/functions/regular-expressions/replaceregex.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.
