I have a data set with approximately 11,000 rows and I need to isolate only those records with I as the sixth character in the string.
The column header is Alias, and an example of some strings would be:
NUSCKI005673
TFDS-45675
AHKGHI064235
NUSFGS00562
I need to retain only the records NUSCKI005673 and AHKGHI064235 as they have I in the sixth position. I cannot simply filter by includes NUSCKI and AHKGHI as there are many other permutations with I as the sixth character.