我试图在我的C#/ IronPython中运行以下内容:
import re
Message = re.sub(r"^EVN\|A\d+", "EVN|A08", Message, flags=MULTILINE)
在命令提示符下,这在真正的python上工作正常。但是,一旦我把它放入IronPython,我就会收到一个错误:
IronPython.Runtime.PythonContext.InvokeUnaryOperator(CodeContext context, UnaryOperators oper, Object target, String errorMsg)
at IronPython.Runtime.Operations.PythonOps.Length(Object o)
at IronPython.Modules.Builtin.len(Object o)
at Microsoft.Scripting.Interpreter.FuncCallInstruction`2.Run(InterpretedFrame frame)
at Microsoft.Scripting.Interpreter.Interpreter.Run(InterpretedFrame frame)
at Microsoft.Scripting.Interpreter.LightLambda.Run4[T0,T1,T2,T3,TRet](T0 arg0, T1 arg1, T2 arg2, T3 arg3)
at System.Dynamic.UpdateDelegates.UpdateAndExecute3[T0,T1,T2,TRet](CallSite site, T0 arg0, T1 arg1, T2 arg2)
at Microsoft.Scripting.Interpreter.DynamicInstruction`4.Run(InterpretedFrame frame)
at Microsoft.Scripting.Interpreter.Interpreter.Run(InterpretedFrame frame)
at Microsoft.Scripting.Interpreter.LightLambda.Run2[T0,T1,TRet](T0 arg0, T1 arg1)
at IronPython.Compiler.PythonScriptCode.RunWorker(CodeContext ctx)
at IronPython.Compiler.PythonScriptCode.Run(Scope scope)
at IronPython.Compiler.RuntimeScriptCode.InvokeTarget(Scope scope)
at IronPython.Compiler.RuntimeScriptCode.Run(Scope scope)
at Microsoft.Scripting.SourceUnit.Execute(Scope scope, ErrorSink errorSink)
at Microsoft.Scripting.Hosting.ScriptSource.Execute(ScriptScope scope)
at Microsoft.Scripting.Hosting.ScriptEngine.Execute(String expression, ScriptScope scope)
研究让我理解(对或错?)MULTILINE标志触发了IronPython中的Compile()。然后我发现这篇文章关于它在IronPython中缺乏支持:https://ironpython.codeplex.com/workitem/22692。
删除flags=MULTILINE
可修复错误。但是,它不再与"^EVN"
匹配。
编辑:如果我使用flags=re.MULTILINE
,我收到此错误:
ERROR Error while processing the message. Message: sub() got an unexpected keyword argument 'flags'. Microsoft.Scripting.ArgumentTypeException: sub() got an unexpected keyword argument 'flags'
结束编辑
我的问题是:我如何解决这个问题,并且在给定上面的代码片段的情况下仍然可以获得与命令行相同的结果,但是在IronPython中?
我很少使用Python,更不用说IronPython了,所以请原谅,因为我不确定我的替代品。
答案 0 :(得分:1)
IronPython可能不支持re.sub
中的flags
关键字参数。要解决该问题,可以先编译正则表达式。如果您计划多次使用表达式,建议您这样做;无论如何,模块级功能都可以实现。
为此,请使用re.compile
。标志可以作为第二个参数传递:
regex = re.compile('^EVN\|A\d+', re.MULTILINE)
这为您提供了一个正则表达式对象,您可以直接使用其sub
方法来执行替换:
Message = regex.sub('EVN|A08', Message)