Skip to content

Instantly share code, notes, and snippets.

@JanVoracek
Last active August 29, 2015 14:21
Show Gist options
  • Save JanVoracek/2f73ed3c258438f1e375 to your computer and use it in GitHub Desktop.
Save JanVoracek/2f73ed3c258438f1e375 to your computer and use it in GitHub Desktop.
<?php
function wrap($text, $chunkSize) {
return join("\n", str_split($text, $chunkSize));
}
package codingdojo;
import com.google.common.base.Splitter;
public class Wrapper {
public static String wrap(String text, int chunkSize) {
return String.join("\n", Splitter.fixedLength(chunkSize).split(text));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment