There's an string like this:
abcdefghijk
I want to slice it like this:
abc
bcd
cde
def
efg
fgh
ghi
hij
ijk
I googled but could not find any site or answers to reach this.
Update 1
My question is not similar to Split string every nth character?.