How to remove string from specific starting string to remain
I have a table column as description, description column having string like
'welcome India ,having wonderful places to visit '
I need output like welcome India
Need to eliminate starting keywords like having upto remaining string
What ever the contents like having after words
How can I do that

Puneet KankarPosted Nov 19, 2019, 10:47 AM
Dipa MehtaPosted Nov 19, 2019, 3:35 AM
There is no method java to replace or remove last character from string, but we can do it using string substring method.