-
Notifications
You must be signed in to change notification settings - Fork 14
Simplifying the use of regular expressions #7
Copy link
Copy link
Open
Labels
enhancementfirst-timers-onlySuitable for fevelopers who are contributing first time in open source development .Suitable for fevelopers who are contributing first time in open source development .good first issuesmall win, trivial, less complex issues. Created to encourage Open Source developmentsmall win, trivial, less complex issues. Created to encourage Open Source developmenthelp wanted
Metadata
Metadata
Assignees
Labels
enhancementfirst-timers-onlySuitable for fevelopers who are contributing first time in open source development .Suitable for fevelopers who are contributing first time in open source development .good first issuesmall win, trivial, less complex issues. Created to encourage Open Source developmentsmall win, trivial, less complex issues. Created to encourage Open Source developmenthelp wanted
Why
In current version of Stubmatic, we use regular expressions to match & catch HTTP request. Writing regular expression can be an easy task for a developer, but reading and understanding it later is complex.
What
To solve this we're planning to use named regular expressions. E.g.
can be replaced with
How