Results 51 comments of OnlineCop

To add to the list: - Command-line search-only tools (`grep`, `ripgrep`, etc.) typically need no delimiter (search-and-replace tools like `sed`, `awk`, `perl`, etc. obviously need those delimiters) - GUI-based IDEs,...

Mostly, yes, but if `PCRE` were selected as the flavor, the Code Generator is using the `re` module instead of the `regex` module when you change to the Python language....

TL;DR: Import each line of the 'test string' as an individual unit test. Here's an idea: a 'test string' is filled with whatever data a user is currently testing against....

This request comes to ensure that a non-regex user could theoretically design all the "replacing A should leave me with B" tests and hand that off to someone else to...

The original did not contain the information on Commodore 64 and other legacy systems that used CR. Why does the Russian translation need it?

There might be a few ways to handle this. Assuming the following for illustration: - the poll was created with 4 default options: `/poll "Should users add options?" "Yes" "I...

Does the [API](https://github.com/firasdib/Regex101/wiki/API) already support this?

Thank you for the suggestion; changing our `sdl2-mixer` to `SDL2_mixer` appears to now let us compile and run: ```diff --- CMakeLists.txt +++ CMakeLists.txt @@ -9,7 +9,7 @@ find_package(SDL2 REQUIRED) find_package(Lua...

I don't really mind if someone is able to figure out how to "cheese the system" if they're able to complete all of the requirements for a quiz. To do...

[W3Schools](https://www.w3schools.com/jsref/jsref_regexp_g.asp) describes the "g" modifier: > The "g" modifier specifies a global match. > A global match finds all matches (compared to only the first). [Mozilla MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/global) describes it this...