I am working on an application that should accept RegEx from the user, for this I use the following code:
Regex user_searchPattern = new Regex(this.userInput_regEx.Text);
Does it safe?
Does user input need to be misinformed, and if so, how?
source
share