What are “steps” in RegexBuddy?
问题 RegexBuddy on the tab "Debug" shows how regular expressions are executed step by step. But what exactly that steps mean? What operations are behind every step? 回答1: The steps count is basically how many times the current position in the input was changed, which is a very good indicator of performance. The "current position" may be at any character or between characters (including before and after the entire input). Simplifying it, regex engines process the input by moving the current position