For say i have a data-frame which looks like this
Now i want to convert the Text values to lower case and also some regex operation. so i am writing a code like below.
for i in df['Text'].values():
i.lower()
re.sub(r"http\S+", " ",i)
re.sub(re.sub('[^A-Za-z0-9]+', ' ',i)
But it seems my code is not working . Can someone help me understand where i'm doing it wrong.