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.

link|improve this question
you tried anything??? – jimy Feb 7 at 10:08
1  
What have you tried? This is about the most trivial regex imaginable. – Tim Pietzcker Feb 7 at 10:08
ya i tried "start.*end" but it is matching the first start and last end – Sai Mukesh Feb 7 at 10:09
feedback

3 Answers

up vote 4 down vote accepted

You need to use non-greedy matching:

start.*?end
link|improve this answer
Thanks a lot it is working – Sai Mukesh Feb 7 at 10:11
feedback

Use replacement function with this regex /start.+?end/g which will match the bold parts of your string. The g part of the regex means globally, and might need to be implemented differently depending on the language you use.

The key here is to use ? which turns on un-greedy matching. That means the match consumes the minimum amount of characters rather than the maximum, so will match from the start to the next rather than the last end

link|improve this answer
Thanks a lot it is working – Sai Mukesh Feb 7 at 10:11
feedback
start[1-9]+end

if you need to have numbers between words

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.