How to select and edit on a particular column?

How can I use awk to pick a particular column and work on it? For example, I want to count the number of characters in column10 that are separated by |?

Thank you.

Try:

awk -F"|" '{print length($10)}' file

thanks for you.