Using Regex in Power Apps’ Find and Replace text

Using Regex in Power Apps' Find and Replace

Power Apps’ Find and Replace tool with Regex is an invaluable feature for making quick, efficient updates to your apps. Below, I’ll walk you through two practical scenarios where Regex truly shines, complete with visuals to demonstrate.

1️⃣ Migrating Hardcoded Screen Names to Dynamic Variables

When transitioning an app to use dynamic variables for navigation, Regex can help you locate all hardcoded screen names like Screen1, Screen2, etc., and replace them with a variable like varNextScreen.
  • Regex Pattern to Use:
				
					Navigate\(Screen\d+,

				
			
  • What It Does:This pattern matches any “Navigate” function with hardcoded screen names (e.g., Screen1,  Screen2) and makes replacing them with a dynamic variable (Navigate(varNextScreen, …)) quick and easy.
 

See Image 1 Below:

This shows how Regex highlights all navigation calls and allows you to replace them efficiently in bulk.

2️⃣ Cleaning Up Unused Variables

Unused variables, such as tempVar, legacyVar, or oldCounter, can clutter your app and impact performance. Regex helps identify these variables quickly for cleanup.

  • Regex Pattern to Use:
  
				
					Set\((temp\w*|legacy\w*|old\w*),

				
			
What It Does:
    • This pattern finds all instances of unused variables (e.g., Set(tempVar, …)Set(legacyVar, …)) so you can delete or update them efficiently.

See Image 2 Below:

This image shows how Regex identifies multiple unused variables across your app, streamlining the cleanup process.

Conclusion

Power Apps’ Regex-enabled Find and Replace tool is a must-use for maintaining and optimizing your apps. Whether you’re replacing hardcoded values or cleaning up unused variables, Regex ensures efficiency and consistency.

Leave A Comment