You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Regular expressions are a very useful tool for search/replace purposes and would fit well with this plugin.
I believe a regex checkbox would be sufficient to specify whether or not a regex is being used. That being said, when I processed the input of the search field as a regex by changing line 292 of /inc/Database/Replace.php to $data = preg_replace( $from, $to, $data ); I ended up matching every entry of every table selected, despite the same regex working when run as a function in the theme's functions.php file.
The text was updated successfully, but these errors were encountered:
Thanks a lot for usage of the plugin and your feature request.
Currently we see this feature not as relevant for this plugin. Regex are more for power-users, not defaults there change data. So that this user group have the change to use standard mysql tools, cli etc.
Maybe much later, but actually we have not resources to implement this.
Regular expressions are a very useful tool for search/replace purposes and would fit well with this plugin.
I believe a regex checkbox would be sufficient to specify whether or not a regex is being used. That being said, when I processed the input of the search field as a regex by changing line 292 of /inc/Database/Replace.php to
$data = preg_replace( $from, $to, $data );
I ended up matching every entry of every table selected, despite the same regex working when run as a function in the theme's functions.php file.The text was updated successfully, but these errors were encountered: