stringtemplate 提取匹配模式的变量

发布于 2024-10-16 03:55:18 字数 293 浏览 3 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凝望流年 2024-10-23 03:55:18

最好将该逻辑放入填充提供给 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文