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
- Added RegexEscape to get the same functionality as re.escape in Python
- Added RegexFindObject to make it easy to find a single match object for a regex that matches in multiple places
- Added a simple GUI which I will eventually make work so that it can be used to design regular expressions.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+9-1
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
8
8
9
9
### To Be Added
10
10
11
-
- ???
11
+
- Fully functional Regex Builder Form.
12
+
13
+
# [2.0.0] - 2022-03-10
14
+
15
+
### Added
16
+
17
+
- RegexFindObject (like indexing in `list(re.finditer(x))`, which returns the n^th match as a match object, unlike RegexFind, which returns a string.
18
+
- RegexEscape (`re.escape` workalike), which takes a string and returns the string with all special characters escaped.
19
+
- The basic skeleton of "Regex Builder Form.xlsm", which will allow people to build regular expressions by a GUI similar to [RegexBuddy](https://www.rexegg.com/regexbuddy-tutorial.html). This is not yet functional.
0 commit comments