I created a flow.
It puts the files/subfolders properties (ID, filename, uploader etc) from a specific folder into a Sharepoint list.
I put the file IDs into filearray.
I put file IDs (column called FILE-ID) from a SharePoint list into listarray.
The problem is the following:
filearray looks like this: [222,225,221,230]
listarray looks like this: ["222","225","221","230","240"]
The column type is single-line text. I tried to change to number but it adds .0 to the value.
I'd like to compare the two arrays but because of this "it always shows differences.
How can I remove/add " from the values of the arrays?