Let say I have a pattern like -
Str = "#sometext_any_character_including_&**(_etc_blabla\\s"
Now I want to replace above text with
"#some\\s"
i.e. I just want to retain first 4 characters
and trailing space
and beginning #
. Is there any r
way to do this?
Any pointer will be highly appreciated.