Can Notepad++ automatically split a text file into multiple files?

I have a text file that contains a massive amount of words that I would like to make into a number of different text files. Specifically I need to take every 100 words in this file and make a separate text file. So, for example, my existing file has 5000 words. This would create 50 files with 100 words each in them. Is this possible with notepad++?


you can use Gsplit, as alternative

https://www.gdgsoft.com/gsplit


This can easily be done in Linux with a variety of tools, split being one. I'm assuming you are using Windows however, as you mentioned Notepad++. I don't think theres native Windows tools for it, but you can simply google the problem and find many solutions for it online. This is a common problem and there exist a variety of ways to solve it. Here is an example of one that may work, though not fully automated: https://notepad-plus-plus.org/community/topic/12370/splitting-or-breaking-one-file-into-multiple-smaller-ones. I suggest you research this further and then come back with a specific question on a method, due to how common this question is.