Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8269179
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T06:08:12+00:00 2026-06-08T06:08:12+00:00

Just 4 fun I’m developing a little RegEx replace tool. The tool is componed

  • 0

Just 4 fun I’m developing a little RegEx replace tool. The tool is componed by an input string, a search expression (regex search for textbox) and a replace string (replace by textbox). I also implemented a preview Label. The preview is updated on text changed of each on my textboxes.

I would like to add a validation of my regex search expression. If the RegEx string is not valid I would like to add a red icon at the end of my textbox. I know how to do that in old winform but I would like to implement this in MVVM

screenshot

At this moment my ViewModel is like this:

    private string _searchExpression;
    public string SearchExpression
    {
        get { return _searchExpression; }
        set
        {
            if (value != _searchExpression)
            {
                _searchExpression = value;
                OnPropertyChanged("SearchExpression");
                OnPropertyChanged("Preview");
            }
        }
    }

    private string _replaceExpression;
    public string ReplaceExpression
    {
        get { return _replaceExpression; }
        set
        {
            if (value != _replaceExpression)
            {
                _replaceExpression = value;
                OnPropertyChanged("ReplaceExpression");
                OnPropertyChanged("Preview");
            }
        }
    }

    public string Preview
    {
        get
        {
            if (SelectedFile != null && SearchExpression != null && ReplaceExpression != null)
                try
                {
                    return _renamer.Rename(SelectedFile.ToString(), SearchExpression, ReplaceExpression);
                }
                catch (Exception)
                {
                    return string.Empty;
                }
            else
                return string.Empty;
        }
    }

First I’ll create a validation method in my business object _renamer. What next? What should I implement in the ViewModel?

  • Creating a IsValid property and evaluate it in Preview method or in the setter of SearchExpression?
  • Replacing all OnPropertyChanged(“Preview”) by a simple call to a Refresh() method and in this Refresh() method I udpate IsValid property and if it is valid my Preview property?
  • Working with converters?
  • other solutions?

Also Do you know how to validate a regex. At this moment I try to create it and catch it if it’s wrong. Is it possible to validate it before creating it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T06:08:14+00:00Added an answer on June 8, 2026 at 6:08 am

    Implementing IDataErrorInfo in your ViewModel will do the thing.
    To see the results of validation you will also have to set NotifyOnDataErrors property of the binding to True in xaml you have.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Just for fun, I wrote this simple function to reverse a string in Python:
I'm making myself a little messenger just for fun. And I want to make
I am developing a game in java just for fun. It is a ball
I'm starting to learn a little Flex just for fun and maybe to prove
i'm developing an array structure just for fun. This structure, generalized by a template
I'm programming a little Twitter Client just for fun. I have the tweet's text
Just for fun I'm developing a native Win32 port of Mozilla XUL. XUL allows
I'm developing a website(just for fun) and have been using mostly js/jquery to build
I'm developing an application just for fun that consists of capturing images from a
I've been developing a Smalltalk variant for just the fun of it and I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.