Skip to content
Advertisement

Extracting Specific Text From column in dataframe

I have the following dataframe and I’m trying to extract the string that has the ABC followed by it’s numbers.

Description
ABC12345679 132465
Test ABC12346548
Test ABC1231321 4645

I have tried:

JavaScript

But its giving me what it comes after on instances that there’s more text after the ABC* like so:

Description
ABC12345679 132465
ABC12346548
ABC1231321 4645

And I need the column to only contain data as following:

Description
ABC12345679
ABC12346548
ABC1231321

Any assistance on this?

Advertisement

Answer

We can use regex to extract the necessary part of the string.
Here we are checking for atleast one [A-C] and 0 or more[0-9]

JavaScript

or (based on need)

JavaScript

Output

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