I'm wondering if there's a library function (or why StringUtils in Apache Commons doesn't have it?) that for a String calculates all the substrings. For "abcde" it retuns "a", "ab", "b", "abc", "bc", "c", "abcd", "bcd", "cd","d", "abcde", "bcde", "cde", "de", "e".
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I don't think AndyPerfect's will work correctly. The second loop bound needs to be <= instead of just <.
Note that you can remove that first add() if you don't want the empty substring included. |
|||||||||
|
|
I don't believe there's a library function, but it would be extremely easy to just roll one youself:
Remember though, that there will be a number of permutations equal to 1+2+3+4+...+s.length |
||||
|
|
|
Sounds computational intensive. Think of all the permutations you would have with whole sentences. That and they probably figured if somebody needed something that wasn't something needed on a regular basis. |
|||
|