my string is like this sfdfdsfdsfstart112matlab2336endgfdgdfgkknfkgstart558899enddfdsfd
how can weo replace part of a string such a way that the result will be
sfdfdsfdsfgfdgdfgkknfkgdfdsfd
i.e bolded content need to be removed.
|
my string is like this sfdfdsfdsfstart112matlab2336endgfdgdfgkknfkgstart558899enddfdsfd how can weo replace part of a string such a way that the result will be sfdfdsfdsfgfdgdfgkknfkgdfdsfd i.e bolded content need to be removed. | |||||||||
feedback
|
|
You need to use non-greedy matching:
| ||||
|
feedback
|
|
Use replacement function with this regex The key here is to use | |||
|
feedback
|