我正在学习正则表达式和vbscript,以便通过每月添加用户输入的文本将文本附加到新行上的.c文件中。我在线收到正则表达式语法错误:68 char:以下VBScript中的1个,需要帮助将其排序:
path = "<C:\Users\Parth\Desktop\C06S3000.C>"
Set re = New RegExp
inputstr1 = InputBox("enter short name for recovery month, example: dec2015")
re.Pattern = "^([a-zA-Z]{3,5}\d{4})$"
re.IgnoreCase = True
Do While re.Test(inputstr1) <> True
inputstr1 = InputBox("incorrect entry; enter short name for recovery month, example: dec2015")
Loop
inputstr2 = InputBox("enter full name for recovery month, example: december_2015")
re.Pattern = "^([a-zA-Z_]{3,10}\d{4})$"
re.IgnoreCase = True
Do While re.Test(inputstr2) <> True
inputstr2 = InputBox("incorrect entry; enter full name for recovery month, example: december_2015")
Loop
inputstr3 = InputBox("enter names of all affected groups for recovery month separated by commas and single space, example: a1, a2, a3,...")
re.Pattern = "^(([a-zA-Z_]{1,2}\d{1,2}[,]\s)*)$"
re.IgnoreCase = True
Do While re.Test(inputstr3) <> True
inputstr3 = InputBox("incorrect entry, enter names of all affected groups for recovery month separated by commas and space, example: a1, a2, a3,... ")
Loop
grpString1 = split(inputstr3, ",")
inputstr4 = InputBox("enter loss percentage for each group separated by commas and a space; example: 0.00283148378304, 0.39331380134641, ...")
re.Pattern = "^((\d\.\d{14}[,]\s)*)$"
Do While re.Test(inputstr4) <> True
inputstr4 = InputBox("incorrect entry, enter loss percentage for each group separated by commas and a space; example: 0.00283148378304, 0.39331380134641, ... ")
Loop
grpString2 = split(inputstr4, ",")
If UBound(grpString1) = UBound(grpString2) Then
Else
'use more efficient code by implementing class variables with a function, for example, in future versions'
'source: https://bytes.com/topic/asp-classic/answers/125942-vbscript-function-returning-multiple-values'
response.write("affected group count does not match loss percentage count; reenter these values to match count")
inputstr3 = InputBox("enter names of all affected groups for recovery month separated by commas and single space, example: a1, a2, a3,...")
re.Pattern = "^(([a-zA-Z_]{1,2}\d{1,2}[,]\s)*)$"
re.IgnoreCase = True
Do While re.Test(inputstr3) <> True
inputstr3 = InputBox("incorrect entry, enter names of all affected groups for recovery month separated by commas and space, example: a1, a2, a3,... ")
Loop
grpString1 = Split(inputstr3, ",")
inputstr4 = InputBox("enter loss percentage for each group separated by commas and a space; example: 0.00283148378304, 0.39331380134641, ...")
re.Pattern = "^((\d\.\d{14}[,]\s)*)$"
Do While re.Test(inputstr4) <> True
inputstr4 = InputBox("incorrect entry, enter loss percentage for each group separated by commas and a space; example: 0.00283148378304, 0.39331380134641, ... ")
Loop
grpString2 = Split(inputstr4, ",")
End If
Set objfso = CreateObject("Scripting.FileSystemObject")
If objfso.FileExists(path) Then
Set objFile = objFSO.OpenTextFile(path).ReadAll
End If
'source: http://www.tutorialspoint.com/vbscript/vbscript_split_function.htm'
ublptm = UBound(grpString1)
For i=0 To ublptm 'where lptm = loss_pct_avg_monthyear[group] = percent;'
lptmStr = lptmstr + "loss_pct_through_[" & grpString1(i) & "] = " & grpString2(i) & ";" & vbCrLf
Next
re.Pattern = "(?<=loss_pct_through_([a-zA-Z]{3,5}\d{4})\[([a-zA-Z_]{1,2}\d{1,2})\]\s=\s\d\.\d{14}[;]\n)\n(?=\}\n)"
'source: http://stackoverflow.com/questions/13588622/using-vbscript-to-find-and-replace-all-multi-line-text-between-curly-braces-of-a'
objFile = re.Replace(objFile, vbCrLf & lptmstr & vbCrLf)
第68行是:
objFile = re.Replace(objFile, vbCrLf & lptmstr & vbCrLf)
正则表达式模式应该寻找.c代码并在换行符后面添加用户输入,如下所示:
原始档案:
loss_pct_through_nov2015[a4] = 0.13155605112872;
loss_pct_through_nov2015[a5] = 0.23415898757080;
loss_pct_through_dec2015[a2] = 0.00283148378304;
loss_pct_through_dec2015[a3] = 0.39331380134641;
loss_pct_through_dec2015[a4] = 0.56333929692615;
loss_pct_through_dec2015[a5] = 0.04051541794440; <-append content from here
\n
}
更新文件:
loss_pct_through_nov2015[a4] = 0.13155605112872;
loss_pct_through_nov2015[a5] = 0.23415898757080;
loss_pct_through_dec2015[a2] = 0.00283148378304;
loss_pct_through_dec2015[a3] = 0.39331380134641;
loss_pct_through_dec2015[a4] = 0.56333929692615;
loss_pct_through_dec2015[a5] = 0.04051541794440;
\n <--new newline character replacing the old one to append content below
loss_pct_through_jan2016[a2] = 0.04051541794440;
loss_pct_through_jan2016[a4] = 0.04051541794440;
}
答案 0 :(得分:1)
您在此表达式的开头有一个positive lookbehind assertion((?<=...)
):
re.Pattern = "(?<=loss_pct_through_([a-zA-Z]{3,5}\d{4})\[([a-zA-Z_]{1,2}\d{1,2})\]\s=\s\d\.\d{14}[;]\n)\n(?=\}\n)"
VBScript正则表达式引擎不支持这些。