In java, Write a program that takes in a file and separates things into alphabet words, numbers, and special symbols. Th
Posted: Fri Jul 01, 2022 5:46 am
In java, Write a program that takes in a file and separatesthings into alphabet words, numbers, and special symbols.
This code should process the following input as such:
asdbmapsdom12039_=-12--34=5au1ti
asdbmapsdom: word
12039: number
_=-: special symbol
12: number
-- : special symbol
34: number
= : special symbol
5: number
au: word
1:number
ti: word
This code should process the following input as such:
asdbmapsdom12039_=-12--34=5au1ti
asdbmapsdom: word
12039: number
_=-: special symbol
12: number
-- : special symbol
34: number
= : special symbol
5: number
au: word
1:number
ti: word