如何为字母替换密码(groovy)创建编码器和解码器?
基本上我必须在groovy上设计和实现这个,这是为了编码和解码特定的段落?
Basically i have to design and implement this on groovy , this is to encode and decode a specific paragraph ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以查看此
http://groovy.codehaus.org/ExpandoMetaClass+-+Dynamic+ Method+Names
显示了编解码器的典型用例。
基本上类似(来自该链接)
您不会使用 HtmlUtils,但结构是相同的。
编辑 - 这是一个如何进行替换的示例。请注意,这可能更常规,并且它不处理标点符号,但它应该有助于
编辑 - 这是一个更常规的解决方案
You can check out this
http://groovy.codehaus.org/ExpandoMetaClass+-+Dynamic+Method+Names
which shows the typical use case for codecs.
Basically something like (from that link)
you wont use the HtmlUtils, but the structure is the same.
EDIT -- here is an example on how to do the substitution. Note this can probably be more groovy, and it doesn't deal with punctuation, but it should help
EDIT -- here is a solution that is a bit more groovy