+[{"name":"$createRegex","version":"1.0.0","description":"Creates a new regex","brackets":true,"unwrap":true,"args":[{"name":"name","description":"The name of the new regex","type":"String","required":true,"rest":false},{"name":"pattern","description":"The pattern of the regex","type":"String","required":true,"rest":false},{"name":"flags","description":"The flags of the regex","type":"String","rest":false}]},{"name":"$deleteRegex","version":"1.0.0","description":"Deletes an existing regex, returns bool","brackets":true,"unwrap":true,"args":[{"name":"name","description":"The name of the regex to delete","type":"String","required":true,"rest":false}],"output":["Boolean"]},{"name":"$getRegex","version":"1.0.0","description":"Gets an existing regex","brackets":true,"unwrap":true,"args":[{"name":"name","description":"The name of the regex to get","type":"String","required":true,"rest":false}],"output":["String"]},{"name":"$regexExecute","version":"1.0.0","description":"Executes a regex search on a string, returns the result","aliases":["$regexExec"],"brackets":true,"unwrap":true,"args":[{"name":"name","description":"The name of the regex","type":"String","required":true,"rest":false},{"name":"string","description":"The string to execute","type":"String","required":true,"rest":false},{"name":"separator","description":"The separator to use for each result","type":"String","rest":false}],"output":["Unknown"]},{"name":"$regexExists","version":"1.0.0","description":"Returns whether a regex exists","brackets":true,"unwrap":true,"args":[{"name":"name","description":"The name of the regex","type":"String","required":true,"rest":false}],"output":["Boolean"]},{"name":"$regexFlags","version":"1.0.0","description":"Returns the flags of a regex","aliases":["$regexFlag"],"brackets":true,"unwrap":true,"args":[{"name":"name","description":"The name of the regex","type":"String","required":true,"rest":false}],"output":["String"]},{"name":"$regexLastIndex","version":"1.0.0","description":"Returns the last index of a regex","brackets":true,"unwrap":true,"args":[{"name":"name","description":"The name of the regex","type":"String","required":true,"rest":false}],"output":["Number"]},{"name":"$regexMatch","version":"1.0.0","description":"Returns the regex matches for a string","aliases":["$regexMatches"],"brackets":true,"unwrap":true,"args":[{"name":"name","description":"The name of the regex","type":"String","required":true,"rest":false},{"name":"string","description":"The string to return matches for","type":"String","required":true,"rest":false},{"name":"separator","description":"The separator to use for each result","type":"String","rest":false}],"output":["Unknown"]},{"name":"$regexReplace","version":"1.0.2","description":"Replace text in a string using regex","brackets":true,"unwrap":true,"args":[{"name":"name","description":"The name of the regex to match in base","type":"String","required":true,"rest":false},{"name":"text","description":"The base text","type":"String","required":true,"rest":false},{"name":"new value","description":"The text to replace matches with","type":"String","rest":false,"required":true},{"name":"amount","description":"How many times to perform this replacement","rest":false,"type":"Number"}],"output":["String"]},{"name":"$regexSearch","version":"1.0.0","description":"Returns the index of the first match in a string","brackets":true,"unwrap":true,"args":[{"name":"name","description":"The name of the regex","type":"String","required":true,"rest":false},{"name":"string","description":"The string to search for","type":"String","required":true,"rest":false}],"output":["Number"]},{"name":"$regexSplit","version":"1.0.0","description":"Splits a string with regex","brackets":true,"unwrap":true,"args":[{"name":"name","description":"The name of the regex","type":"String","required":true,"rest":false},{"name":"string","description":"The string to split","type":"String","required":true,"rest":false},{"name":"separator","description":"The separator to use for each result","type":"String","rest":false}],"output":["Unknown"]},{"name":"$regexTest","version":"1.0.0","description":"Returns whether the regex matches the string","brackets":true,"unwrap":true,"args":[{"name":"name","description":"The name of the regex","type":"String","required":true,"rest":false},{"name":"string","description":"The string to check for","type":"String","required":true,"rest":false}],"output":["Boolean"]},{"name":"$setRegexFlags","version":"1.0.0","description":"Sets the flags for a regex","aliases":["$setRegexFlag"],"brackets":true,"unwrap":true,"args":[{"name":"name","description":"The name of the regex","type":"String","required":true,"rest":false},{"name":"flags","description":"The flags to set","type":"String","required":true,"rest":false}]},{"name":"$setRegexLastIndex","version":"1.0.0","description":"Sets the last index for a regex","brackets":true,"unwrap":true,"args":[{"name":"name","description":"The name of the regex","type":"String","required":true,"rest":false},{"name":"index","description":"The index to set","type":"Number","required":true,"rest":false}]}]
0 commit comments