If you want to do it specifically in MS Word in the future, you can search for:
^$^$^$^$^$^$^$^$^$^$
to search for a string of any ten letters, or turn wildcards on and search for
[acgtnACGTN]{10}
to search for a,c,g,t,n,A,C,G,T,N occuring in sets of 10, and replace with
^&
with a space after the "^&" to replace with the same pattern, with a space at the end. This won't give you the line numbers etc that some other sequence formats will be giving you though. You could replace with ^&^l to get the blocks of 10 all on different lines, if that's what you meant.