Exclude unneeded digits with regular expression

Viewed 15

I have a text file (~ 3000 Lines) with warnings. I have big troubles to write a regular expression to exclude all unneaded information. it work partly but not as the result below

Can somebody help me please to write correctly the regular expression. Thank u

The string line is as follows: 00:36.455990400 ComponentA 0xa37bb9e0 ComponentB warning 6556 ErrorMessage: connection failed????!"§$&34..BLA

Match result should be without the digits and time span at beginn:
00:36.455990400 ComponentA 0xa37bb9e0 ComponentB warning 6556 ErrorMessage: connection failed????!"§$&34..BLA

result: ComponentA, ComponentB ,warning , ErrorMessage: connection failed????!"§$&34..BLA

0 Answers
Related