sed would be perfect for this. You could also use cut -c if all the tuple-numbers are one digit, or cut -f twice: Once with -d ',' and once with -d ')'
griswolf
Veteran Poster
1,165 posts since Apr 2010
Reputation Points: 344
Solved Threads: 256
awk '{split($0, a, ","); sub(/\)/,"",a[3]); print a[3]}' source.file > result.file
Or
sed 's!( [0-9],[0-9],\([0-9]\) )!\1!' source.file > result.file
Aia
Nearly a Posting Maven
2,392 posts since Dec 2006
Reputation Points: 2,224
Solved Threads: 218