I have a file named A.xml which contains a strings such as "Ticket_Release1" and "Ticket_V2".
I want to find and replace all the strings in the file starting with Ticket_ with something called Ticket_Final.
Example, replace "Ticket_Release1" and "Ticket_V2" with "Ticket_Final" by searching for string Ticket_
Can you please help me here.
"
) part of the string? Should we assume that a string is anything starting withTicket_
until the next whitespace character? How aboutfooTicket_1
? Should that be counted? Please edit your question and clarify. – terdon♦ Jul 28 at 7:20