Unwanted field separation in awk

Hi everyone,

My problem is strange, I cannot think of why this is happening.

I have a set of data that looks like this:

Although it does not look it, the fields are tab delimited. I have made sure of this, and awk does recognize them as such. However, it divides what I would expect to be $4, (x, y), into two fields at the comma. Even if I specify:

{FS="\t"}

the issue persists. Any ideas?

Alright, I realized my problem... this can be deleted, I feel silly.

lol

Chris

Odd - I get the following:

awk '{print $4}' file
(197,383)
(197,383)
(511,69)
(511,69)