|
[Date Index]
[Thread Index]
[Author Index]
Partition string into length n chunks
- To: mathgroup at smc.vnet.net
- Subject: [mg126532] Partition string into length n chunks
- From: David G <daggillies at gmail.com>
- Date: Thu, 17 May 2012 04:11:14 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
I am sure this is trivially simple, but how do I partition a string into non-overlapping length n chunks? The best I could come up with is chunk[s_, n_] := StringJoin[#] & /@ Partition[Characters[s], n] but this seems overly long-winded.
Prev by Date:
Re: Total least squares with Mathematica?
Next by Date:
Coefficient
Previous by thread:
Re: Partition Help
Next by thread:
Re: Partition string into length n chunks
|