1) RegEx replacement is not working as expected:
Example from an old forum reference:
... a string like this in the yyyymmddHHMMSS.mmmmmmsUUU format (see CIM_DATETIME description):
20190104140000.111597+600
... return a raw timestamp value. Then apply the following regular expression to this column:
(\d{4})(\d{2})(\d{2})(\d{2})(\d{2}).*
Use this as the replacement expression:
\1-\2-\3 on \4:\5
In last version the output looks like this "1-2-3 on 4:5" and not what it should be for date and time.
2) Feature request:
Ability to maximize Visible Columns windows like in Remote Scripting windows where there are three control buttons in the top right corner (MINIMIZE, MAXIMIZE and CLOSE). Best to see RegExs and Highlights or when dragging (move) up or down rows to reorder.