
grex
List of commands for grex:
-
grex:tldr:00b7f grex: Generate a case-insensitive regular expression.$ grex -i ${space_separated_strings}try on your machineexplain this command
-
grex:tldr:64563 grex: Generate a simple regular expression.$ grex ${space_separated_strings}try on your machineexplain this command
-
grex:tldr:7bfdf grex: Replace spaces with '\s'.$ grex -s ${space_separated_strings}try on your machineexplain this command
-
grex:tldr:7d585 grex: Replace digits with '\d'.$ grex -d ${space_separated_strings}try on your machineexplain this command
-
grex:tldr:cc4fc grex: Replace Unicode word character with '\w'.$ grex -w ${space_separated_strings}try on your machineexplain this command
-
grex:tldr:dd74f grex: Add {min, max} quantifier representation for repeating sub-strings.$ grex -r ${space_separated_strings}try on your machineexplain this command