Skip to content
Advertisement

Using Regex to extract Data to different Columns in Pandas

I’m working with the following DataFrame column containing Date |TimeStamp | Name | Message as a string

JavaScript

I use the following function to capture the Date.

JavaScript

and the following code to capture the rest of the data (TimeStamp | Name | Message) into columns:

JavaScript

Is there a workaround to capture and extract all 4 entities together?

Please Advise

Advertisement

Answer

As an alternative you could use regex named groups together with pandas extractall.

JavaScript

Output from df_out

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement