I'm trying to modify unwanted part of a string in a DataFrame. E.g in column title_0, the value needs to be changed to "INC000000324540".
title_0
0 Your Group have a new ticket INC000000324540 please help our customer
The issue I had is the value isn't changed even after using string slice.
appended_df_INC['title_0'].str.slice(start=28, stop=44)