Replace

How to Use the Power Fx ReplaceĀ  Function in Power Apps

Introduction to the Power Fx Replace Function

The Power Fx Replace function is used to find and replace a specified substring in a string with a new substring. The syntax for the Replace function is as follows:


Replace(text, old_text, new_text [, start_num])


The parameters for the function are as follows:

- `text`: The string in which to search for the specified substring.

- `old_text`: The substring to search for in the specified string.

- `new_text`: The new substring to replace the old substring with.

- `start_num`: (Optional) The position in the string to start the search. If omitted, the search will begin at the first character of the string.

Using the Power Fx Replace Function

Using the Power Fx Replace function in Power Apps is simple. To demonstrate, let's create a simple Power App that uses the Replace function to replace a substring in a string.

1. Start by creating a new Power App in Power Apps.

2. Add a new Text Input control to the screen.

3. Add a new Label control to the screen.

4. Set the Text property of the Label control to the following formula:


Replace(TextInput1.Text, “old”, “new”)


5. Run the app and enter a string that contains the substring "old" into the Text Input control.

6. Click outside of the Text Input control to trigger the Replace function.

7. The Label control should display the string with the substring "old" replaced with "new".

That's it! You have successfully used the Power Fx Replace function in Power Apps.

Advanced Usage of the Power Fx Replace Function

The Power Fx Replace function can also be used in more advanced scenarios, such as replacing multiple instances of a substring in a string. To do this, you can combine the Replace function with the Substitute function, which replaces all occurrences of a substring in a string. Here is an example formula that uses both functions:


Substitute(Replace(text, old_text, new_text), old_text, new_text)


In this formula, the Substitute function is used to replace all occurrences of the old substring with the new substring after the Replace function has replaced the first occurrence.

The Power Fx Replace function is a powerful tool for finding and replacing substrings in strings in Power Apps. Whether you are a developer or a non-technical user, the Replace function can help you create custom applications with ease. With its simple syntax and advanced features, the Power Fx Replace function is a must-have tool for anyone working with Power Apps.

Power Apps Training Courses by G Com Solutions (0800 998 9248)