I would convert the second dataset to include a new column that is just the integer first. Using a transform node and the below code.
Configure fields:
# Map all input fields
out1 += in1
# Add a new output field to hold the extracted integer(s)
out1.ExtractedIntegers = str
Process Records:
import re
# Copy all input fields
out1 += in1
# Extract integers from the input string field (e.g., 'Data')
if in1['junk'] is Null:
matches = Null
else:
matches = re.findall(r'\b\d{5,6}\b', in1['junk'])
# Join all found integers into a single string (or handle as needed)
out1.ExtractedIntegers = ','.join(matches) if matches else ''
Then you can use a Expand From List node (Deprecated) if you do expect multiple results and split out the records with a comma.
------------------------------
Toby Harkin
TELSTRA LIMITED
Sydney NSW
------------------------------
Original Message:
Sent: 05-21-2025 03:37
From: andrew darnell
Subject: Using 1 Dataset and Try To Find In Another Dataset
Hi Guys
I have around 1700, 5-6 digits in length in one dataset 1 contained in one column and separate table, I need to find these in another column in separate dataset.2
The issue is, in the dataset 2 that i am trying to find these 1700 from dataset 1 can contain additional alpha numeric data.
Example

I need some kind of string find process.
I'm hoping someone could put a graph together and help me out.
Looking forward to your reply
------------------------------
andrew darnell
Knowledge Community Shared Account
------------------------------