how to remove whitespace from acronyms using regexes
807580Sep 25 2009 — edited Sep 25 2009I have text say "hallo a s d java world". Now asd is a acronym with whitespace. It could have been "a. s. d." as well. When there is space between these individual alphabets of an acronym, it creates lots of trouble in my application. Acronyms can be of minimum two alphabets, but upper limit is not defined. Now I want output as "hallo asd java world". What will be the regex for it and what will be the capturing group ?