Tagged Questions
1
vote
1answer
73 views
python module to remove internet jargon/slang/acronym
Is there any python module (may be in nltk python) to remove internet slang/ chat slang like "lol","brb" etc. If not can some one provide me a CSV file comprising of such vast list of slang?
The ...
0
votes
4answers
1k views
is there a string method to capitalize acronyms in python?
This is good:
import string
string.capwords("proper name")
'Proper Name'
This is not so good:
string.capwords("I.R.S")
'I.r.s'
Is ...