I have this string:
$str = "here is start of rage, also here is some text and here is the end of string";
// ^^^^^ ^^^
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Now I'm trying to remove all e
letter between this range: [start
- end
]. Well I want this output:
$newstr = "here is start of rag, also hr is som txt and hr is th end of string";
How can I do that?