I need to Split complete document made out of text to separate words,how can I do this so it gives me each word alone ,
I used .Split function and It worked for the white space character , other than that no ,
I need a regex that can split the words based on (. and , and | and : and ; and ,)
any help ?
yourStringValue.split(/[.,|:;,]/);yourStringValue.split(/[.,|:;, ]/g);