I have trouble to replace the text inside a line using sed. here is the example.
<con:startTransactionRequestElement>2a07a832-5b4e-44d2-8826-64d8678f6226</con:startTransactionRequestElement>
i want to only change the content between
<con:startTransactionRequestElement>
and
</con:startTransactionRequestElement>
for example, change the above content to below:
<con:startTransactionRequestElement>abcdefegeawge</con:startTransactionRequestElement>
can someone tell me how to do that?
Thanks.