firasdib / Regex101

This repository is currently only used for issue tracking for www.regex101.com
3.26k stars 199 forks source link

Request: Option to not display Octal/Base-8 char codes in hover tooltips and Explanation help. #2055

Closed ZStoner closed 1 year ago

ZStoner commented 1 year ago

Feature Request

💡 Settings Option: Add an option to not display the Octal/Base-8 char codes via the Settings options.

Example of Current Display: Explanation Text
/ (\!\[)(?<ArrayList>.+?)(\]) / gi
1st Capturing Group (\!\[)
\! matches the character ! with index 3310 (2116 or 418) literally (case insensitive)
\[ matches the character [ with index 9110 (5B16 or 1338) literally (case insensitive)

Note: The "Octal/Base-8" parts I underlined to highlight the parts I'm referring to.

Other Notes:


Example if the Feature was implemented: Explanation Text
Before \! matches the character ! with index 3310 (2116 or 418) literally (case insensitive)
After \! matches the character ! with index 3310 (2116) literally (case insensitive)


Thanks, ----Z.

firasdib commented 1 year ago

I could implement a select option in the settings where you can pick:

Would that be good?

firasdib commented 1 year ago

This has been added, check the settings menu.