Page MenuHomeFeedback Tracker

Missing Regex class
Assigned, NormalPublic

Description

Hey,

It would be really nice if we had access to Regex class. It's present in Workbench soooooo...
It gives huge possibilities of data manipulation.

Note: It didn't existed in DayZ, thank's for doggo telling me I'm just dumb!

Details

Severity
Feature
Resolution
Open
Reproducibility
N/A
Operating System
Windows 7
Category
General

Event Timeline

DjCtavia created this task.Jun 3 2022, 10:23 PM
DjCtavia updated the task description. (Show Details)
DjCtavia updated the task description. (Show Details)Jun 3 2022, 11:42 PM
Geez changed the task status from New to Assigned.Jun 9 2022, 12:42 PM

Simple api proposal:

class Regex
{
    static bool Match(RegexExpression expression, void value);
}

class RegexExpression
{
    static RegexExpression Compile(string expression);
}
This comment was removed by Arkensor.