diff --git a/docs/contributing/Regular-Expression-Regex.html b/docs/contributing/Regular-Expression-Regex.html index d85857e..2a3af2f 100644 --- a/docs/contributing/Regular-Expression-Regex.html +++ b/docs/contributing/Regular-Expression-Regex.html @@ -562,7 +562,7 @@ ccQDRSSE001-SurvivalMode.esl
condition in this example includes the regular expression: file("SKSE/Plugins/([^\.]+\.dll)").dll files within the folder structure SKSE/Plugins/.dll files within the folder structure SKSE/Plugins/.. in front of dll has been escaped through writing a backslash \ in front of it.[^\.]+ consists out of three parts.[^x] will find a character that is not x, which is achieved by placing the circumflex ^ within square brackets [ ]. In this case x is an escaped period \. so not a period is what we want. After the square brackets comes the quantifier plus + which means one or more times.