Re: [LANG] Adding StringUtils split by length methods

2015-08-04 Thread Benedikt Ritter
Hello Loic, sorry, I don't have much time for OSS at the moment. I'll definitely have a look when I have more time again, but I don't know when that will be :-( But I'm not the only committer for Commons Lang so others should be able to give you feedback as well. Regards, Benedikt 2015-07-28 12:

Re: [LANG] Adding StringUtils split by length methods

2015-07-28 Thread Loic Guibert
Hello Benedikt, Have you had time to look at these elements and my feedback comments on github ? https://github.com/apache/commons-lang/pull/75 Loic Guibert PGP : 0x65EB4F33 Le 01/05/2015 13:47, Benedikt Ritter a écrit : > Hey Loic, > > thank you for this proposal. I'll have a look at it this S

Re: [LANG] Adding StringUtils split by length methods

2015-05-01 Thread Benedikt Ritter
Hey Loic, thank you for this proposal. I'll have a look at it this Sunday! Benedikt 2015-04-30 10:08 GMT+02:00 Loic Guibert : > Hello, > I've implemented 2 methods to split a String by fixed lengths : > - public static String[] splitByLength(String str, int ... lengths) > - public static St

[LANG] Adding StringUtils split by length methods

2015-04-30 Thread Loic Guibert
Hello, I've implemented 2 methods to split a String by fixed lengths : - public static String[] splitByLength(String str, int ... lengths) - public static String[] splitByLengthRepeatedly(String str, int ... lengths) I'll open a JIRA ticket and an associated Pull Request to add those methods i