Teams - team.dat

Thu, Sep 8, 2016

Team

Index Column Name C Type PHP Type Examples
0 A Team ID char* string 8730,88A6,8430
1 B Team Name char* string “KC Select èlan”,“KC Prime Premier 2001”
2 C Head Coach char* string “Caleb Edwards”, “Matt Dunn”, “Christy Kononiuk”
3 D Extra Pipe at End of Line void* string

Team ID

The subdivision id is embedded in the first 3 characters of the team id.

Team Names

I found the following characters in the team names, including a couple of unicode characters.

characters = [
    ' ',
    '!',
    '&',
    "'",
    '(',
    ')',
    '+',
    '-',
    '.',
    '/',
    '0',
    '1',
    '2',
    '3',
    '4',
    '5',
    '6',
    '7',
    '8',
    '9',
    ':',
    'A',
    'B',
    'C',
    'D',
    'E',
    'F',
    'G',
    'H',
    'I',
    'J',
    'K',
    'L',
    'M',
    'N',
    'O',
    'P',
    'Q',
    'R',
    'S',
    'T',
    'U',
    'V',
    'W',
    'X',
    'Y',
    'Z',
    'a',
    'b',
    'c',
    'd',
    'e',
    'f',
    'g',
    'h',
    'i',
    'j',
    'k',
    'l',
    'm',
    'n',
    'o',
    'p',
    'q',
    'r',
    's',
    't',
    'u',
    'v',
    'w',
    'x',
    'y',
    'z',
    'è',
    'é'
]