Hi
I've recently starting using UE [v22.10/Win7x64] and am having problems with a data file that I need to import into another system. The file is 1.8M lines, but contains several 1000 rogue entries, so it's not really something I want to do manually!!
It's a postcode file; the correct values [second field onwards] are all alpha characters, but the second field in the CSV file can contain various numeric values (some also contain a decimal point).
I need to replace these rogue entries with a single 'R' (my current attempts produce multiple 'R's). This is a sample of the data:
TIA
Michael
I've recently starting using UE [v22.10/Win7x64] and am having problems with a data file that I need to import into another system. The file is 1.8M lines, but contains several 1000 rogue entries, so it's not really something I want to do manually!!
It's a postcode file; the correct values [second field onwards] are all alpha characters, but the second field in the CSV file can contain various numeric values (some also contain a decimal point).
I need to replace these rogue entries with a single 'R' (my current attempts produce multiple 'R's). This is a sample of the data:
Code: Select all
BB1 1RY,B,B,G,G
BB1 1RZ,B,B,G,G
BB1 1SA,B,B,G,G
BB1 1SB,427398,B,B,G
BB1 1SD,B,B,G,G
BB1 1SL,427723,B,B,G
BB1 1SU,B,B,G,G
BB1 1SW,B,B,G,G
BB1 1SX,B,B,G,G
BB1 1SY,B,B,G,G
BB1 1SZ,B,B,G,G
BB1 1TA,B,B,G,G
BB1 1TB,427348.3,B,B,G
BB1 1TD,B,B,G,G
BB1 1TH,B,B,G,G
BB1 1TJ,B,B,G,G
BB1 1TL,427678.3,B,B,G
BB1 1UE,B,B,G,G
BB1 1UF,B,B,G,G
BB1 1UG,B,B,G,G
BB1 1UH,B,B,G,G
BB1 1UJ,B,B,G,G
BB1 1UL,B,B,G,G
BB1 1UN,428011.9,B,B,G
BB1 1UP,428066.5,B,B,G
Michael