Skyrim Special Edition
0 of 0

File information

Last updated

Original upload

Created by

Meridiano

Uploaded by

MeridianoRus

Virus scan

Safe to use

About this mod

Maybe you confronted with a problem, so here's SkyRegEx, now you have two problems.

Requirements
Permissions and credits
Changelogs
This SKSE plugin introduces some RegEx-related functions.

~~~

:: general
String GetVersion() > Returns "1-2-0-0" string.

:: match
Bool IsMatching(...) > Returns if input string contains matches.
Int MatchCount(...) > Returns how many matches contains input string.
Int[] MatchInfo(...) > Returns array of integers. Size of array is matches count, each element is groups count within match.
String[] MatchData(...) > Returns array of all groups in all matches.
String MatchResult(...) > Returns Nth group of Nth match if you pass MatchInfo and MatchData results to it.

:: replace
String ReplaceWith(...) > Common regular expressions replace function.

~~~

More info is in docs readme. Read it. This is unavoidable.