stringtemplate 提取匹配模式的变量
我正在使用 stringtemplate 库在 ac# 应用程序中进行模板化。我正在寻找这样的功能,
给定一个像“$address1$,$address2,$PIN$”这样的模板 和像“Nightmare,elm street,666666”这样的字符串
我想提取模板变量可以匹配的值
address1 = Nightmare
address2 = elm street
PIN = 666666
是否可以使用stringtemplate?如果没有的话还有其他替代建议吗?
I am using the stringtemplate library for templating in a c# application. I am looking for a feature like so,
given a template like "$address1$, $address2, $PIN$"
and a string like "Nightmare, elm street, 666666"
I would like to extract the values that template variables could have matched
address1 = Nightmare
address2 = elm street
PIN = 666666
is it possible to use stringtemplate? any other alternate suggestions if not?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好将该逻辑放入填充提供给 stringtemplate 的模型的任何内容中。 stringtemplate 的工作是填充模板,而不是执行解析逻辑。
It would be better to put that logic into whatever populates the model provided to stringtemplate. The job of stringtemplate is to populate templates, not to perform parsing logic.