Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个没有空格的长哈希(64 个以上字符),我需要在每行或每张表中显示其中的 2 个。为了使表格保持可观的宽度,我想将这些散列分成多行。
我正在寻找一些很酷的 Groovy 配方来执行此操作或某种可能会处理它的 HTML 样式。
要每行显示 8 个字符,您可以执行以下操作:
hash.toList().collate( 8 )*.join().join( '\n' )