-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNHL_Winners.csv
We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 7 columns, instead of 5 in line 1.
1316 lines (1316 loc) · 64.8 KB
/
NHL_Winners.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Abel, Clarence, New York Rangers, 1928, Chicago Blackhawks, 1934, {2}
Abel, Sid, Detroit Red Wings, 1943-50-52, {3}
Acer, Douglas, Montreal Victorias, 1899, {1}
Acton, Keith, Edmonton Oilers, 1988, {1}
Adams, Craig, Carolina Hurricanes, 2006, Pittsburgh Penguins, 2009, {2}
Adams, Jack, Toronto Arenas, 1918, Ottawa Senators, 1927, {2}
Adams, John M., Boston Bruins, 1970, {1}
Adams, Kevyn, Carolina Hurricanes, 2006, {1}
Aebischer, David, Colorado Avalanche, 2001, {1}
Afanasenkov, Dmitry, Tampa Bay Lightning, 2004, {1}
Aitkenhead, Andy, New York Rangers, 1933, {1}
Albelin, Tommy, New Jersey Devils, 1995–2003, {2}
Allan, Angus, Ottawa Senators, 1905, {1}
Allen, Keith, Detroit Red Wings, 1954, {1}
Anderson, Doug, Montreal Canadiens, 1953, {1}
Anderson, Glenn, Edmonton Oilers, 1984-85-87-88-90, New York Rangers, 1994, {6}
Anderson, John, Victoria Cougars, 1925, {1}
Andreychuk, Dave, Tampa Bay Lightning, 2004, {1}
Andrews, Lloyd, Toronto St. Pats, 1922, {1}
Apps, Syl Sr., Toronto Maple Leafs, 1942-47-48, {3}
Arbour, Al, Detroit Red Wings, 1954, Chicago Blackhawks, 1961, Toronto Maple Leafs, 1962–64, {4}
Arbour, Amos, Montreal Canadiens, 1916, {1}
Armytage, Jack, Winnipeg Victorias, 1896, {1}
Armstrong, George, Toronto Maple Leafs, 1962-63-64-67, {4}
Arnott, Jason, New Jersey Devils, 2000, {1}
Ashbee, Barry, Philadelphia Flyers, 1974, {1}
Asmundson, Ossie, New York Rangers, 1933, {1}
Aurie, Larry, Detroit Red Wings, 1936–37, {2}
Awrey, Don, Boston Bruins, 1970–72, Montreal Canadiens, 1976, {3}
Babando, Pete, Detroit Red Wings, 1950, {1}
Babchuk, Anton, Carolina Hurricanes, 2006, {1}
Backor, Pete, Toronto Maple Leafs, 1945, {1}
Backstrom, Ralph, Montreal Canadiens, 1959-60-65-66-68-69, {6}
Bailey, Garnet, Boston Bruins, 1970–72, {2}
Bailey, Irvine, Toronto Maple Leafs, 1932, {1}
Bain, Dan, Winnipeg Victorias, 1896-1901-02, {3}
Balfour, Earl, Chicago Blackhawks, 1961, {1}
Balfour, Murray, Chicago Blackhawks, 1961, {1}
Balon, David, Montreal Canadiens, 1965–66, {2}
Barber, Bill, Philadelphia Flyers, 1974–75, {2}
Barilko, Bill, Toronto Maple Leafs, 1947-48-49-51, {4}
Barlow, Billy, Montreal AAA, 1893–94, {2}
Barrasso, Tom, Pittsburgh Penguins, 1991–92, {2}
Barry, Marty, Detroit Red Wings, 1936–37, {2}
Bathgate, Andy, Toronto Maple Leafs, 1964, {1}
Bauer, Bobby, Boston Bruins, 1939–41, {2}
Baun, Bob, Toronto Maple Leafs, 1962-63-64-67, {4}
Bawlf, Billy, Ottawa Senators, 1905, {1}
Beaudro, Roxy, Kenora Thistles, 1907, {1}
Beauchemin, Francois, Anaheim Ducks, 2007, {1}
Belfour, Ed, Dallas Stars, 1999, {1}
Belanger, Jesse, Montreal Canadiens, 1993, {1}
Beliveau, Jean, Montreal Canadiens, 1956-57-58-59-60-65-66-68-69-71, {10}
Bell, Billy, Montreal Canadiens, 1924, {1}
Bellingham, Billy, Montreal AAA, 1902–03, {2}
Bellows, Brian, Montreal Canadiens, 1993, {1}
Benedict, Clint, Ottawa Senators, 1920-21-23, Montreal Maroons, 1926, {4}
Benoit, Joe, Montreal Canadiens, 1946, {1}
Benson, Robert R., Winnipeg Victorias, 1896, {1}
Bentley, Max, Toronto Maple Leafs, 1948-49-51, {3}
Berenson, Gordon, Montreal Canadiens, 1965, {1}
Bergeron-Cleary, Patrice, Boston Bruins, 2011, {1}
Berlinquette, Louis, Montreal Canadiens, 1916, {1}
Bernier, Jonathan, Los Angeles Kings, 2012, {1}
Beukeboom, Jeff, Edmonton Oilers, 1987-88-90, New York Rangers, 1994, {4}
Bicek, Jiri, New Jersey Devils, 2003, {1}
Bickell, Bryan, Chicago Blackhawks, 2010–13-15, {3}
Blachford, Cecil, Montreal AAA, 1903, Montreal Wanderers, 1906-07-08-10, {5}
Black, Steve, Detroit Red Wings, 1950, {1}
Bladon, Tom, Philadelphia Flyers, 1974–75, {2}
Blair, Andy, Toronto Maple Leafs, 1932, {1}
Blake, Hector, Montreal Maroons, 1935, Montreal Canadiens, 1944–46, {3}
Blake, Rob, Colorado Avalanche, 2001, {1}
Blinco, Russ, Montreal Maroons, 1935, {1}
Bodnar, Gus, Toronto Maple Leafs, 1945–47, {2}
Boesch, Garth, Toronto Maple Leafs, 1947-48-49, {3}
Boisvert, Serge, Montreal Canadiens, 1986, {1}
Boldirev, Ivan, Boston Bruins, 1970, {1}
Bolland, Dave, Chicago Blackhawks, 2010-13, {2}
Bollig, Brandon, Chicago Blackhawks, 2013, {1}
Bolton, Hugh, Toronto Maple Leafs, 1951, {1}
Bomdardir, Brad, New Jersey Devils, 2000, {1}
Bonin, Marcel, Detroit Red Wings, 1955, Montreal Canadiens, 1958-59-60, {4}
Bonino, Nick, Pittsburgh Penguins, 2016, {1}
Boon, Dickie, Montreal AAA, 1902–03, {2}
Bordeleau, Christian, Montreal Canadiens, 1969, {1}
Bossy, Mike, New York Islanders, 1980-81-82-83, {4}
Bouchard, Pierre, Montreal Canadiens, 1971-73-76-77-78, {5}
Bouchard, Emile, Montreal Canadiens, 1944-46-53-56, {4}
Boucher, Billy, Montreal Canadiens, 1924, {1}
Boucher, Bobby, Montreal Canadiens, 1924, {1}
Boucher, Frank, New York Rangers, 1928–33, {2}
Boucher, George, Ottawa Senators, 1920-21-23-27, {4}
Boucher, Philippe, Pittsburgh Penguins, 2009, {1}
Bourgeault, Leo, New York Rangers, 1928, {1}
Bourne, Bob, New York Islanders, 1980-81-82-83, {4}
Bourque, Phil, Pittsburgh Penguins, 1991–92, {2}
Bourque, Raymond, Colorado Avalanche, 2001, {1}
Boutilier, Paul, New York Islanders, 1983, {1}
Bower, Johnny, Toronto Maple Leafs, 1962-63-64-67, {4}
Bowie, Russell, Montreal Victorias, 1899, {1}
Bowman, Ralph, Detroit Red Wings, 1936–37, {2}
Boychuk, Johnny, Boston Bruins, 2011, {1}
Boyd, Billy, New York Rangers, 1928, {1}
Boyle, Dan, Tampa Bay Lightning, 2004, {1}
Boynton, Nick, Chicago Blackhawks, 2010, {1}
Brannen, Jack, Montreal Shamrocks, 1899–1900, {2}
Brennan, Doug, New York Rangers, 1933, {1}
Brennon, John, Montreal Shamrocks, 1900, {1}
Brenneman, John, Toronto Maple Leafs, 1967, {1}
Brewer, Carl, Toronto Maple Leafs, 1962-63-64, {3}
Brimsek, Frank, Boston Bruins, 1939–41, {2}
Brind’Amour, Rod, Carolina Hurricanes, 2006, {1}
Brisebois, Patrice, Montreal Canadiens, 1993, {1}
Broadbent, Harry, Ottawa Senators, 1920-21-23, Montreal Maroons, 1926, {4}
Broda, Walter, Toronto Maple Leafs, 1942-47-48-49-51, {5}
Broden, Connie, Montreal Canadiens, 1957–58, {2}
Brodeur, Martin, New Jersey Devils, 1995-2000-03, {3}
Brookbank, Sheldon, Chicago Blackhawks, 2013, {1}
Brooks, Arthur, Toronto Maple Leafs, 1918, {1}
Brophy, Bernie, Montreal Maroons, 1926, {1}
Broten, Neal, New Jersey Devils, 1995, {1}
Brouwer, Troy, Chicago Blackhawks, 2010, {1}
Brown, Adam, Detroit Red Wings, 1943, {1}
Brown, Art, Winnipeg Victorias, 1901–02, {2}
Brown, Connie, Detroit Red Wings, 1943, {1}
Brown, Dave, Edmonton Oilers, 1990, {1}
Brown, Doug, Detroit Red Wings, 1997–98, {2}
Brown, Dustin, Los Angeles Kings, 2012-14, {2}
Bruce, Gordie, Boston Bruins, 1941, {1}
Bruce, Morley, Ottawa Senators, 1920–21, {2}
Brule, Steve, New Jersey Devils, 2000, {1}
Brunet, Benoit, Montreal Canadiens, 1993, {1}
Bruneteau, Moderre, Detroit Red Wings, 1936-37-43, {3}
Brylin, Sergei, New Jersey Devils, 1995-2000-03, {3}
Bryzgalov, Ilya, Anaheim Ducks, 2007, {1}
Buchberger, Kelly, Edmonton Oilers, 1987–90, {2}
Bucyk, John, Boston Bruins, 1970–72, {2}
Bucyk, Randy, Montreal Canadiens, 1986, {1}
Burish, Adam, Chicago Blackhawks, 2010, {1}
Burke, Marty, Montreal Canadiens, 1930–31, {2}
Byfuglien, Dustin, Chicago Blackhawks, 2010, {1}
Cadham, Fred, Winnipeg Victorias, 1896-1902–1903, {3}
Cain, Herb, Montreal Maroons, 1935, Boston Bruins, 1941, {2}
Callander, William, Pittsburgh Penguins, 1992, {1}
Callighen, Frank, New York Rangers, 1928, {1}
Cameron, Allan, Montreal AAA, 1893–94, {2}
Cameron, Billy, Montreal Canadiens, 1924, {1}
Cameron, Harry, Toronto Blueshirts, 1914, Toronto Arenas, 1918, Toronto St. Pats, 1922, {3}
Campbell, Brian, Chicago Blackhawks, 2010, {1}
Campbell, Gregory, Boston Bruins, 2011, {1}
Campbell, Colin J., Winnipeg Victorias, 1896, {1}
Carbonneau, Guy, Montreal Canadiens, 1986–93, Dallas Stars, 1999, {3}
Carcillo, Daniel, Chicago Blackhawks, 2013-15, {2}
Carey, George, Quebec Bulldogs, 1912, {1}
Carleton, Wayne, Boston Bruins, 1970, {1}
Carpenter, Bob Jr., New Jersey Devils, 1995, {1}
Carpenter, Everard, Seattle Metropolitans, 1917, {1}
Carr, Lorne, Toronto Maple Leafs, 1942–45, {2}
Carroll, Billy, New York Islanders, 1981-82-83, Edmonton Oilers, 1985, {4}
Carson, Frank, Montreal Maroons, 1926, {1}
Carson, Gerry, Montreal Canadiens, 1930, {1}
Carson, Bill, Boston Bruins, 1929, {1}
Carter, Jeff, Los Angeles Kings, 2012-14, {2}
Carter, Ryan, Anaheim Ducks, 2007, {1}
Carveth, Joe, Detroit Red Wings, 1943–50, {2}
Cashman, Wayne, Boston Bruins, 1970–72, {2}
Caufield, Jay, Pittsburgh Penguins, 1991–92, {2}
Chabot, Lorne, New York Rangers, 1928, Toronto Maple Leafs, 1932, {2}
Chamberlain, Erwin, Montreal Canadiens, 1944–46, {2}
Chambers, Shawn, New Jersey Devils, 1995, Dallas Stars, 1999, {2}
Chara, Zdeno, Boston Bruins, 2011, {1}
Chartraw, Rick, Montreal Canadiens, 1976-77-78-79, Edmonton Oilers, 1984, {5}
Cheevers, Gerry, Boston Bruins, 1970–72, {2}
Chelios, Chris, Montreal Canadiens, 1986, Detroit Red Wings, 2002–08, {3}
Chipcase, William, Montreal Wanderers, 1907–10, {2}
Chorske, Tom, New Jersey Devils, 1995, {1}
Chychrun, Jeff, Pittsburgh Penguins, 1992, {1}
Cibak, Martin, Tampa Bay Lightning, 2004, {1}
Cleary, Daniel, Detroit Red Wings, 2008, {1}
Clancy, Frank, Ottawa Senators, 1923–27, Toronto Maple Leafs, 1932, {3}
Clapper, Aubrey, Boston Bruins, 1929-39-41, {3}
Clarke, Bob, Philadelphia Flyers, 1974–75, {2}
Cleghorn, Ogilivie, Montreal Canadiens, 1924, {1}
Cleghorn, Sprague, Ottawa Senators, 1920–21, Montreal Canadiens, 1924, {3}
Clement, Bill, Philadelphia Flyers, 1974–75, {2}
Clifford, Kyle, Los Angeles Kings, 2012-14, {2}
Clymer, Ben, Tampa Bay Lightning, 2004, {1}
Coffey, Paul, Edmonton Oilers, 1984-85-87, Pittsburgh Penguins, 1991, {4}
Coflin, Hugh, Detroit Red Wings, 1952, {1}
Cole, Danton, New Jersey Devils, 1995, {1}
Cole, Erik, Carolina Hurricanes, 2006, {1}
Cole, Ian, Pittsburgh Penguins, 2016, {1}
Collins, Herb, Montreal AAA, 1894, {1}
Colville, Mac, New York Rangers, 1940, {1}
Colville, Neil, New York Rangers, 1940, {1}
Commodore, Mike, Carolina Hurricanes, 2006, {1}
Conacher, Brian, Toronto Maple Leafs, 1967, {1}
Conacher, Charlie, Toronto Maple Leafs, 1932, {1}
Conacher, Lionel, Chicago Blackhawks, 1934, Montreal Maroons, 1935, {2}
Conacher, Pat, Edmonton Oilers, 1984, {1}
Conacher, Roy, Boston Bruins, 1939–41, {2}
Connell, Alex, Ottawa Senators, 1927, Montreal Maroons, 1935, {2}
Connelly, Bert, Chicago Blackhawks, 1938, {1}
Connor, Cam, Montreal Canadiens, 1979, {1}
Cook, Fred, New York Rangers, 1928–33, {2}
Cook, Lloyd, Vancouver Millionaires, 1915, {1}
Cook, Tom, Chicago Blackhawks, 1934, {1}
Cook, Bill, New York Rangers, 1928–33, {2}
Cooke, Matt, Pittsburgh Penguins, 2009, {1}
Corbeau, Bert, Montreal Canadiens, 1916, {1}
Corbeau, Con, Toronto Blueshirts, 1914, {1}
Corbet, Rene, Colorado Avalanche, 1996, {1}
Costello, Les, Toronto Maple Leafs, 1948, {1}
Cotton, Harold, Toronto Maple Leafs, 1932, {1}
Coughlin, Jack, Toronto Arenas, 1918, {1}
Coulter, Art, Chicago Blackhawks, 1934, New York Rangers, 1940, {2}
Cournoyer, Yvan, Montreal Canadiens, 1965-66-68-69-71-73-76-77-78-79, {10}
Courtnall, Geoff, Edmonton Oilers, 1988, {1}
Coutu, Wilfred, Montreal Canadiens, 1924, {1}
Couture, Gerry, Detroit Red Wings, 1950, {1}
Couture, Rosie, Chicago Blackhawks, 1934, {1}
Cowick, Bruce, Philadelphia Flyers, 1974, {1}
Cowley, Bill, Boston Bruins, 1939–41, {2}
Crawford, Corey, Chicago Blackhawks, 2013–15, {2}
Crawford, Jack, Boston Bruins, 1939–41, {2}
Crawford, Rusty, Quebec Bulldogs, 1913, Toronto Arenas, 1918, {2}
Creighton, Billy, Quebec Bulldogs, 1913, {1}
Crisp, Terry, Philadelphia Flyers, 1974–75, {2}
Crosby, Sidney, Pittsburgh Penguins, 2009–16, {2}
Cullen, Matt, Carolina Hurricanes, 2006, Pittsburgh Penguins, 2016, {2}
Cullimore, Jassen, Tampa Bay Lightning, 2004, {1}
Cumiskey, Kyle, Chicago Blackhawks, 2015, {1}
Currie, Alex, Ottawa Senators, 1911, {1}
Curry, Floyd, Montreal Canadiens, 1953-56-57-58, {4}
Cushenan, Ian, Montreal Canadiens, 1959, {1}
Dahlin, Kjell, Montreal Canadiens, 1986, {1}
Dahlstrom, Carl, Chicago Blackhawks, 1938, {1}
Daigneault, Jean-Jacques, Montreal Canadiens, 1993, {1}
Daley, Trevor, Pittsburgh Penguins, 2016, {1}
Damphousse, Vincent, Montreal Canadiens, 1993, {1}
Dandenault, Mathieu, Detroit Red Wings, 1997-98-2002, {3}
Daneyko, Ken, New Jersey Devils, 1995-2000-03, {3}
Daniels, Jeff, Pittsburgh Penguins, 1992, {1}
Darling, Scott, Chicago Blackhawks, 2015, {1}
Darragh, Hal, Toronto Maple Leafs, 1932, {1}
Darragh, Jack, Ottawa Senators, 1911-20-21-23, {4}
Datsyuk, Pavel, Detroit Red Wings, 2002–08, {2}
Davidson, Allan, Toronto Blueshirts, 1914, {1}
Davidson, Cam, Montreal Victorias, 1896-97-98-99, {4}
Davidson, Bob, Toronto Maple Leafs, 1942–45, {2}
Davidson, Shirley, Montreal Victorias, 1895-96-97, {3}
Davis, Lorne, Montreal Canadiens, 1953, {1}
Dawes, Bob, Toronto Maple Leafs, 1949, {1}
Day, Clarence, Toronto Maple Leafs, 1932, {1}
Deadmarsh, Adam, Colorado Avalanche, 1996, {1}
Dean, Kevin, New Jersey Devils, 1995, {1}
DeBlois, Lucien, Montreal Canadiens, 1986, {1}
Denneny, Corbett, Toronto Arenas, 1918, Toronto St. Pats, 1922, {2}
Denneny, Cyril, Ottawa Senators, 1920-21-23-27, Boston Bruins, 1929, {5}
DeJordy, Denis, Chicago Blackhawks, 1961, {1}
Delvecchio, Alex, Detroit Red Wings, 1952-54-55, {3}
Desjardins, Andrew, Chicago Blackhawks, 2015, {1}
Desjardins, Eric, Montreal Canadiens, 1993, {1}
Devereaux, Boyd, Detroit Red Wings, 2002, {1}
De Vries, Greg, Colorado Avalanche, 2001, {1}
Dewsbury, Al, Detroit Red Wings, 1950, {1}
Dey, Edgar Jr., Ottawa Senators, 1909, {1}
Dickens, Ernie, Toronto Maple Leafs, 1942, {1}
Dillon, Cecil, New York Rangers, 1933, {1}
Dineen, Bill, Detroit Red Wings, 1954–55, {2}
Dingman, Chris, Colorado Avalanche, 2001, Tampa Bay Lightning, 2004, {2}
Dinsmore, Chuck, Montreal Maroons, 1926, {1}
Dion, Unknown, Ottawa Senators, 1906, {1}
Dionne, Gilbert, Montreal Canadiens, 1993, {1}
Dipenta, Joe, Anaheim Ducks, 2007, {1}
DiPietro, Paul, Montreal Canadiens, 1993, {1}
Doak, Gary, Boston Bruins, 1970, {1}
Dobby, John, Montreal Shamrocks, 1899, {1}
Dornhoefer, Gary, Philadelphia Flyers, 1974–75, {2}
Doughty, Drew, Los Angeles Kings, 2012-14, {2}
Douglas, Kent, Toronto Maple Leafs, 1963-64-67, {3}
Douglas, Les, Detroit Red Wings, 1943, {1}
Dowd, Jim, New Jersey Devils, 1995, {1}
Downey, Aaron, Detroit Red Wings, 2008, {1}
Drake, Dallas, Detroit Red Wings, 2008, {1}
Draper, Kris, Detroit Red Wings, 1997-98-2002-08, {4}
Drewiske, Davis, Los Angeles Kings, 2012, {1}
Drinkwater, Graham, Montreal Victorias, 1895-96-97-98-99, {5}
Drillon, Gord, Toronto Maple Leafs, 1942, {1}
Driver, Bruce, New Jersey Devils, 1995, {1}
Drury, Chris, Colorado Avalanche, 2001, {1}
Dryden, Ken, Montreal Canadiens, 1971-73-76-77-78-79, {6}
Dube, Gilles, Detroit Red Wings, 1954, {1}
Duchesne, Steve, Detroit Red Wings, 2002, {1}
Duff, Dick, Toronto Maple Leafs, 1962–63, Montreal Canadiens, 1965-66-68-69, {6}
Dufresne, Donald, Montreal Canadiens, 1993, {1}
Dumart, Woody, Boston Bruins, 1939–41, {2}
Dumoulin, Brian, Pittsburgh Penguins, 2016, {1}
Dupont, Andre, Philadelphia Flyers, 1974–75, {2}
Dupuis, Pascal, Pittsburgh Penguins, 2009–16, {2}
Durnan, Bill, Montreal Canadiens, 1944–46, {2}
Dye, Cecil, Toronto St. Pats, 1922, {1}
Dykstra, Steve, Edmonton Oilers, 1988, {1}
Eager, Ben, Chicago Blackhawks, 2010, {1}
Eaton, Mark, Pittsburgh Penguins, 2009, {1}
Ebbs, Jack, Ottawa Senators, 1906, {1}
Eddolls, Frank, Montreal Canadiens, 1946, {1}
Edwards, Allan, Chicago Blackhawks, 1961, {1}
Ehman, Gerry, Toronto Maple Leafs, 1964, {1}
Elias, Patrik, New Jersey Devils, 2000–03, {2}
Elliot, Ronald, Montreal Victorias, 1895, Montreal AAA, 1902, {2}
Ellis, Ron, Toronto Maple Leafs, 1967, {1}
Elmer, Wally, Victoria Cougars, 1925, {1}
Emery, Ray, Chicago Blackhawks, 2013, {1}
Engblom, Brian, Montreal Canadiens, 1977-78-79, {3}
Erickson, Aut, Toronto Maple Leafs, 1967, {1}
Eriksson, Anders, Detroit Red Wings, 1998, {1}
Errey, Bob, Pittsburgh Penguins, 1991–92, {2}
Eskrine, T., Montreal Wanderers, 1907, {1}
Esposito, Tony, Montreal Canadiens, 1969, {1}
Esposito, Phil, Boston Bruins, 1970–72, {2}
Evans, Jack, Chicago Blackhawks, 1961, {1}
Evans, Stewart, Montreal Maroons, 1935, {1}
Ewen, Todd, Montreal Canadiens, 1993, {1}
Ewing, Jack, Montreal Victorias, 1897-98-99, {3}
Ezinicki, Bill, Toronto Maple Leafs, 1947-48-49, {3}
Farrell, Art, Montreal Shamrocks, 1899–1900, {2}
Fedorov, Sergei, Detroit Red Wings, 1997-98-2002, {3}
Fedotenko, Ruslan, Tampa Bay Lightning, 2004, Pittsburgh Penguins, 2009, {2}
Fehr, Eric, Pittsburgh Penguins, 2016, {1}
Ferguson, John Sr., Montreal Canadiens, 1965-66-68-69-71, {5}
Fenwick, Art, Montreal Victorias, 1895, {1}
Ference, Andrew, Boston Bruins, 2011, {1}
Fetisov, Viacheslav, Detroit Red Wings, 1997–98, {2}
Fillion, Bob, Montreal Canadiens, 1944–46, {2}
Filppula, Valtteri, Detroit Red Wings, 2008, {1}
Finnie, Dave, Ottawa Senators, 1905, {1}
Finnigan, Frank, Ottawa Senators, 1927, Toronto Maple Leafs, 1932, {2}
Fiset, Stephane, Colorado Avalanche, 1996, {1}
Fischer, Jiri, Detroit Red Wings, 2002, {1}
Fisher, Joe, Detroit Red Wings, 1943, {1}
Flaman, Fern, Toronto Maple Leafs, 1951, {1}
Fleming, Reg, Chicago Blackhawks, 1961, {1}
Flett, Bill, Philadelphia Flyers, 1974, {1}
Flett, Magnus, Winnipeg Victorias, 1901–02, {1}
Flett, Rod, Winnipeg Victorias, 1896-1901-02, {3}
Fleury, Marc-Andre, Pittsburgh Penguins, 2009–16, {2}
Fleury, Theoren, Calgary Flames, 1989, {1}
Fogolin, Lido, Detroit Red Wings, 1950, {1}
Fogolin, Lee Jr., Edmonton Oilers, 1984–85, {2}
Foote, Adam, Colorado Avalanche, 1996–2001, {2}
Forsberg, Peter, Colorado Avalanche, 1996–2001, {2}
Fournier, Jack, Montreal Canadiens, 1916, {1}
Foyston, Frank, Toronto Blueshirts, 1914, Seattle Metropolitans, 1917, Victoria Cougars, 1925, {3}
Francis, Ron, Pittsburgh Penguins, 1991–92, {2}
Franks, Jimmy, Detroit Red Wings, 1937, {1}
Franzen, Johan, Detroit Red Wings, 2008, {1}
Fraser, Arthur, Ottawa Senators, 1903, {1}
Fraser, Colin, Chicago Blackhawks, 2010, Los Angeles Kings, 2012, {2}
Fraser, Gord, Victoria Cougars, 1925, {1}
Fredrickson, Frank, Victoria Cougars, 1925, Boston Bruins, 1929, {2}
Friesen, Jeff, New Jersey Devils, 2003, {1}
Frolik, Michael, Chicago Blackhawks, 2013, {1}
Frost, Harry, Boston Bruins, 1939, {1}
Fuhr, Grant, Edmonton Oilers, 1984-85-87-88-90, {5}
Gaborik, Marian, Los Angeles Kings, 2014, {1}
Gagne, Simon, Los Angeles Kings, 2012, {1}
Gagnon, Johnny, Montreal Canadiens, 1931, {1}
Gainey, Bob, Montreal Canadiens, 1976-77-78-79-86, {5}
Gainor, Norman, Boston Bruins, 1929, Montreal Maroons, 1935, {2}
Galbraith, Percy, Boston Bruins, 1929, {1}
Gallagher, John, Detroit Red Wings, 1937, {1}
Gamble, Dick, Montreal Canadiens, 1953, {1}
Gardner, Cal, Toronto Maple Leafs, 1949-51, {2}
Gardiner, Chuck, Chicago Blackhawks, 1934, {1}
Gardner, Jimmy, Montreal AAA, 1902-03, Montreal Wanderers, 1908-10, {4}
Garon, Mathieu, Pittsburgh Penguins, 2009, {1}
Garruthers, George, Winnipeg Victorias, 1901, {1}
Gatherum, Dave, Detroit Red Wings, 1954, {1}
Gaul, Horace, Ottawa Senators, 1905-11, {2}
Gauthier, Jean, Montreal Canadiens, 1965, {1}
Gee, George, Detroit Red Wings, 1950, {1}
Gelinas, Martin, Edmonton Oilers, 1990, {1}
Geoffrion, Bernie, Montreal Canadiens, 1953-56-57-58-59-60, {6}
Gerber, Martin, Carolina Hurricanes, 2006, {1}
Gerard, Eddie, Ottawa Senators, 1920-21-23, Toronto St. Pats, 1922, {4}
Getliffe, Ray, Boston Bruins, 1939, Montreal Canadiens, 1944, {2}
Getzlaf, Ryan, Anaheim Ducks, 2007, {1}
Giguere, Jean-Sebastien, Anaheim Ducks, 2007, {1}
Gilbert, Greg, New York Islanders, 1982-83, New York Rangers, 1994, {3}
Gilchrist, Brent, Detroit Red Wings, 1998, {1}
Gill, Hal, Pittsburgh Penguins, 2009, {1}
Gilhen, Randy, Pittsburgh Penguins, 1991, {1}
Gillilan, Dave, Montreal Victorias, 1896-97, {2}
Gillies, Clark, New York Islanders, 1980-81-82-83, {1}
Gilmour, Dave, Ottawa Senators, 1903, {1}
Gilmour, Doug, Calgary Flames, 1989, {1}
Gilmour, Hamilton, Ottawa Senators, 1903-04-05-06-09, {5}
Gilmour, Larry, Montreal Wanderers, 1908, {1}
Gilmour, Suddy, Ottawa Senators, 1903-04, {2}
Gingras, Gaston, Montreal Canadiens, 1986, {1}
Gingras, Tony, Winnipeg Victorias, 1901–02, {2}
Gionta, Brian, New Jersey Devils, 2003, {1}
Giroux, Eddie, Kenora Thistles, 1907, {1}
Glass, Frank, Montreal Wanderers, 1906-07-08-10, {4}
Glover, Fred, Detroit Red Wings, 1952, {1}
Goldham, Bob, Toronto Maple Leafs, 1942–47, Detroit Red Wings, 1952-54-55, {5}
Goldsworthy, Leroy, Chicago Blackhawks, 1934, {1}
Goldup, Hank, Toronto Maple Leafs, 1942, {1}
Goligoski, Alex, Pittsburgh Penguins, 2009, {1}
Gomez, Scott, New Jersey Devils, 2000–03, {2}
Gonchar, Sergei, Pittsburgh Penguins, 2009, {1}
Goodenough, Larry, Philadelphia Flyers, 1975, {1}
Goodman, Paul, Chicago Blackhawks, 1938, {1}
Goodfellow, Ebbie, Detroit Red Wings, 1936-37-43, {3}
Goring, Butch, New York Islanders, 1980-81-82-83, {4}
Gorman, Ed, Ottawa Senators, 1927, {1}
Gottselig, Johnny, Chicago Blackhawks, 1934–38, {2}
Goyette, Phil, Montreal Canadiens, 1957-58-59-60, {4}
Gracie, Bob, Toronto Maple Leafs, 1932, Montreal Maroons, 1935, {2}
Grahame, John, Tampa Bay Lightning, 2004, {1}
Graham, Leth, Ottawa Senators, 1921, {1}
Grannery, Jack, Quebec Bulldogs, 1912, {1}
Grant, Danny, Montreal Canadiens, 1968, {1}
Grant, Mike, Montreal Victorias, 1895-96-97-98-99, {5}
Graves, Adam, Edmonton Oilers, 1990, New York Rangers, 1994, {2}
Gray, Alex, New York Rangers, 1928, {1}
Gregg, Randy, Edmonton Oilers, 1984-85-87-88-90, {5}
Green, Red, Boston Bruins, 1929, {1}
Green, Rick, Montreal Canadiens, 1986, {1}
Green, Edward, Boston Bruins, 1970–72, {2}
Greene, Matt, Los Angeles Kings, 2012-14, {2}
Grenier, Lucien, Montreal Canadiens, 1969, {1}
Gretzky, Wayne, Edmonton Oilers, 1984-85-87-88, {4}
Griffis, Silas, Kenora Thistles, 1907, Vancouver Millionaires, 1915, {2}
Grosso, Don, Detroit Red Wings, 1943, {1}
Guerin, Bill, New Jersey Devils, 1995, Pittsburgh Penguins, 2009, {2}
Gusarov, Alexei, Colorado Avalanche, 1996, {1}
Hagelin, Carl, Pittsburgh Penguins, 2016, {1}
Hague, Billy, Ottawa Senators, 1906, {1}
Haidy, Gord, Detroit Red Wings, 1950, {1}
Hainsworth, George, Montreal Canadiens, 1930–31, {2}
Halderson, Harold, Victoria Cougars, 1925, {1}
Hall, Glenn, Detroit Red Wings, 1952, Chicago Blackhawks, 1961, {2}
Hall, Joe, Kenora Thistles, 1907, Quebec Bulldogs, 1912–13, {3}
Haller, Kevin, Montreal Canadiens, 1993, {1}
Halliday, Milton, Ottawa Senators, 1927, {1}
Hallin, Mats, New York Islanders, 1983, {1}
Hamill, Robert, Boston Bruins, 1939, {1}
Hamilton, Reg, Toronto Maple Leafs, 1942-45, {2}
Handzuš, Michal, Chicago Blackhawks, 2013, {1}
Hanna, Dave, Edmonton Oilers, 1988, Colorado Avalanche, 1996, {2}
Harmon, Glen, Montreal Canadiens, 1944-46, {2}
Harper, Terry, Montreal Canadiens, 1965-66-68-69-71, {5}
Harris, Edward, Montreal Canadiens, 1965-66-68-69, Philadelphia Flyers, 1975, {5}
Harris, Bill, Toronto Maple Leafs, 1962-63-64, {3}
Harriston, James, Toronto Blueshirts, 1914, {1}
Hart, Harold, Victoria Cougars, 1925, {1}
Hartigan, Mark, Anaheim Ducks, 2007, Detroit Red Wings, 2008, {2}
Hartman, Mike, New York Rangers, 1994, {1}
Harvey, Doug, Montreal Canadiens, 1953-56-57-58-59-60, {6}
Hasek, Dominik, Detroit Red Wings, 2002-08, {2}
Hassard, Bob, Toronto Maple Leafs, 1951, {1}
Hatcher, Derian, Dallas Stars, 1999, {1}
Hay, Bill, Chicago Blackhawks, 1961, {1}
Hay, Jim, Detroit Red Wings, 1955, {1}
Hayes, Chris, Boston Bruins, 1972, {1}
Healy, Glenn, New York Rangers, 1994, {1}
Hefferman, Gerry, Montreal Canadiens, 1944, {1}
Hedican, Bret, Carolina Hurricanes, 2006, {1}
Hejduk, Milan, Colorado Avalanche, 2001, {1}
Heller, Ehrhardt, New York Rangers, 1933–40, {2}
Helman, Harry, Ottawa Senators, 1923, {1}
Helm, Darren, Detroit Red Wings, 2008, {1}
Henderson, Harold, Montreal Victorias, 1895-96-97, {3}
Hendry, Jordan, Chicago Blackhawks, 2010, {1}
Henny, Lorne, New York Islanders, 1980–81, {2}
Hern, Riley, Montreal Wanderers, 1906-07-08-10, {4}
Hextall, Bryan Sr., New York Rangers, 1940, {1}
Hicke, Bill, Montreal Canadiens, 1959–60, {2}
Hicks, Wayne, Chicago Blackhawks, 1961, {1}
Higginbotham, Fred, Winnipeg Victorias, 1896, {1}
Hill, Mel, Boston Bruins, 1939–41, Toronto Maple Leafs, 1945, {3}
Hill, Sean, Montreal Canadiens, 1993, {1}
Hillier, Randy, Pittsburgh Penguins, 1991, {1}
Hiller, Wilbert, Boston Bruins, 1941, Montreal Canadiens, 1946, {2}
Hillman, Larry, Detroit Red Wings, 1955, Toronto Maple Leafs, 1962-63-64-67, Montreal Canadiens, 1969, {6}
Hillman, Wayne, Chicago Blackhawks, 1961, {1}
Hinote, Dan, Colorado Avalanche, 2001, {1}
Hitchman, Lionel, Ottawa Senators, 1923, Boston Bruins, 1929, {2}
Hjalmarsson, Niklas, Chicago Blackhawks, 2010-13-15, {3}
Hnidy, Shane, Boston Bruins, 2011, {1}
Hodge, Charlie, Montreal Canadiens, 1956-58-59-60-65-66, {6}
Hodge, Ken Sr., Boston Bruins, 1970–72, {2}
Hodge, Tom, Montreal AAA, 1902–03, {2}
Hodgson, Archie, Montreal AAA, 1893–94, {2}
Hodson, Kevin, Detroit Red Wings, 1997–98, {2}
Hoerner, Charles, Montreal Shamrocks, 1899–1900, {2}
Hogue, Benoit, Dallas Stars, 1999, {1}
Holik, Bobby, New Jersey Devils, 1995–2000, {2}
Hollet, Bill, Boston Bruins, 1939–41, {2}
Holmes, Hap, Toronto Blueshirts, 1914, Seattle Metropolitans, 1917, Toronto Arenas, 1918, Victoria Cougars, 1925, {4}
Holmstrom, Tomas, Detroit Red Wings, 1997-98-2002-08, {4}
Holota, Johnny, Detroit Red Wings, 1943, {1}
Holway, Albert, Montreal Maroons, 1926, {1}
Hooper, Art, Montreal AAA, 1902–03, {2}
Hooper, Tom, Kenora Thistles, 1907, Montreal Wanderers, 1908, {2}
Horne, George, Montreal Maroons, 1926, {1}
Horner, Charlies, Montreal Shamrocks, 1899–1900, {2}
Horner, Reginald, Toronto Maple Leafs, 1932, {1}
Hornqvist, Patric, Pittsburgh Penguins, 2016, {1}
Horton, Nathan, Boston Bruins, 2011, {1}
Horton, Miles, Toronto Maple Leafs, 1962-63-64-67, {4}
Hossa, Marian, Chicago Blackhawks, 2010–13-15, {3}
Houle, Rejean, Montreal Canadiens, 1971-73-77-78-79, {5}
Howard, Tom, Winnipeg Victorias, 1896, {1}
Howatt, Garry, New York Islanders, 1980–81, {2}
Howe, Gordie, Detroit Red Wings, 1950-52-54-55, {4}
Howe, Syd, Detroit Red Wings, 1936-37-43, {3}
Hrdina, Jiri, Calgary Flames, 1989, Pittsburgh Penguins, 1991–92, {3}
Hrkac, Tony, Dallas Stars, 1999, {1}
Huddy, Charlie, Edmonton Oilers, 1984-85-87-88-90, {5}
Hudler, Jiri, Detroit Red Wings, 2008, {1}
Hudson, Mike, New York Rangers, 1994, {1}
Huet, Cristobal, Chicago Blackhawks, 2010, {1}
Hughes, Pat, Montreal Canadiens, 1979, Edmonton Oilers, 1984–85, {3}
Hull, Bobby, Chicago Blackhawks, 1961, {1}
Hull, Brett, Dallas Stars, 1999, Detroit Red Wings, 2002, {2}
Hutton, Carter, Chicago Blackhawks, 2013, {1}
Hunter, Dave, Edmonton Oilers, 1984-85-87, {3}
Hunter, Mark, Calgary Flames, 1989, {1}
Hunter, Tim, Calgary Flames, 1989, {1}
Huskins, Kent, Anaheim Ducks, 2007, {1}
Hutchinson, Andrew, Carolina Hurricanes, 2006, {1}
Hutton, John, Ottawa Senators, 1903–04, {2}
Hyland, Harry, Montreal Wanderers, 1910, {1}
Irving, Alex, Montreal AAA, 1893–94, {2}
Jackman, Ric, Anaheim Ducks, 2007, {1}
Jackson, Art, Boston Bruins, 1941, Toronto Maple Leafs, 1945, {2}
Jackson, Don, Edmonton Oilers, 1984–85, {2}
Jackson, Harold, Chicago Blackhawks, 1938, Detroit Red Wings, 1943, {2}
Jackson, Harvey, Toronto Maple Leafs, 1932, {1}
Jackson, Stan, Toronto Maple Leafs, 1922, {1}
Jagr, Jaromir, Pittsburgh Penguins, 1991–92, {2}
James, George, Montreal AAA, 1894, {1}
Jarvis, Doug, Montreal Canadiens, 1976-77-78-79, {4}
Jennings, Grant, Pittsburgh Penguins, 1991–92, {2}
Jenkins, Roger, Chicago Blackhawks, 1934–38, {2}
Jeffrey, Larry, Toronto Maple Leafs, 1967, {1}
Johnson, Ernie, Montreal Wanderers, 1906-07-08-10, {4}
Johnson, Ivan, New York Rangers, 1928–33, {2}
Johnson, Tom, Montreal Canadiens, 1953-56-57-58-59-60, {6}
Johnson, Earl, Detroit Red Wings, 1954, {1}
Johnson, Virgil, Chicago Blackhawks, 1938, {1}
Johnston, Eddie, Boston Bruins, 1970–72, {2}
Johnstone, Charles, Winnipeg Victorias, 1896-1901-02, {3}
Johnstone, Ross, Toronto Maple Leafs, 1945, {1}
Joliat, Aurel, Montreal Canadiens, 1924-30-31, {3}
Jones, Robert, Montreal Victorias, 1895–96, {2}
Jones, Martin, Los Angeles Kings, 2014, {1}
Jonsson, Tomas, New York Islanders, 1982–83, {2}
Juzda, Bill, Toronto Maple Leafs, 1949–51, {2}
Kaberle, Frantisek, Carolina Hurricanes, 2006, {1}
Kaberle, Tomas, Boston Bruins, 2011, {1}
Kane, Patrick, Chicago Blackhawks, 2010-13-15, {3}
Kallur, Anders, New York Islanders, 1980-81-82-83, {4}
Kamensky, Valeri, Colorado Avalanche, 1996, {1}
Kampman, Rudolph, Toronto Maple Leafs, 1942, {1}
Karakas, Mike, Chicago Blackhawks, 1938, {1}
Karpovtsev, Alexander, New York Rangers, 1994, {1}
Keane, Mike, Montreal Canadiens, 1993, Colorado Avalanche, 1996, Dallas Stars, 1999, {3}
Keeling, Melville, New York Rangers, 1933, {1}
Keith, Duncan, Chicago Blackhawks, 2010-13-15, {3}
Kelly, Bob, Philadelphia Flyers, 1974–75, {2}
Kelly, Chris, Boston Bruins, 2011, {1}
Kelly, Leonard, Detroit Red Wings, 1950-52-54-55, Toronto Maple Leafs, 1962-63-64-67, {8}
Kelly, Pete, Detroit Red Wings, 1936–37, {2}
Kelly, Steve, New Jersey Devils, 2000, {1}
Kendall, Bill, Chicago Blackhawks, 1934, {1}
Kennedy, Rod, Montreal Wanderers, 1906–07, {2}
Kennedy, Ted, Toronto Maple Leafs, 1945-47-48-49-51, {5}
Kennedy, Tyler, Pittsburgh Penguins, 2009, {1}
Keon, Dave, Toronto Maple Leafs, 1962-63-64-67, {4}
Kerr, Albert, Ottawa Senators, 1909–10-11, {3}
Kerr, Dave, New York Rangers, 1940, {1}
Kessel, Phil, Pittsburgh Penguins, 2016, {1}
Khabibulin, Nikolai, Tampa Bay Lightning, 2004, {1}
Kilrea, Hector, Ottawa Senators, 1927, Detroit Red Wings, 1936–37, {3}
Kilrea, Wally, Detroit Red Wings, 1936–37, {2}
Kindrachuk, Orest, Philadelphia Flyers, 1974–75, {2}
King, Dwight, Los Angeles Kings, 2012-14, {2}
Kingan, Alex, Montreal AAA, 1893–94, {2}
Kitchen, Chapman, Montreal Maroons, 1926, {1}
Klein, Lloyd, Boston Bruins, 1929, {1}
Klima, Petr, Edmonton Oilers, 1990, {1}
Klemm, Jon, Colorado Avalanche, 1996–2001, {2}
Knuble, Mike, Detroit Red Wings, 1998, {1}
Klukay, Joseph, Toronto Maple Leafs, 1947-48-49-51, {4}
Kocur, Joey, New York Rangers, 1994, Detroit Red Wings, 1997–98, {3}
Konstantinov, Vladimir, Detroit Red Wings, 1997–98, {2}
Kopecky, Tomas, Detroit Red Wings, 2008, Chicago Blackhawks, 2010, {2}
Kopitar, Anze, Los Angeles Kings, 2012-14, {2}
Kordic, John, Montreal Canadiens, 1986, {1}
Kovalev, Alexei, New York Rangers, 1994, {1}
Kozlov, Vyacheslav, Detroit Red Wings, 1997–98, {2}
Krejci, David, Boston Bruins, 2011, {1}
Kronwall, Niklas, Detroit Red Wings, 2008, {1}
Krüger, Marcus, Chicago Blackhawks, 2013–15, {2}
Krupp, Uwe, Colorado Avalanche, 1996, Detroit Red Wings, 2002, {2}
Krushelnyski, Mike, Edmonton Oilers, 1985-87-88, {3}
Kubina, Pavel, Tampa Bay Lightning, 2004, {1}
Kuhnhackl, Tom, Pittsburgh Penguins, 2016, {1}
Kunitz, Chris, Anaheim Ducks, 2007, Pittsburgh Penguins, 2009–16, {3}
Kurri, Jari, Edmonton Oilers, 1984-85-87-88-90, {5}
Kurvers, Thomas, Montreal Canadiens, 1986, {1}
Kuznetsov, Maxim, Detroit Red Wings, 2002, {1}
Kypreos, Nick, New York Rangers, 1994, {1}
Lach, Elmer, Montreal Canadiens, 1944-46-53, {3}
Lacombe, Normand, Edmonton Oilers, 1988, {1}
Ladd, Andrew, Carolina Hurricanes, 2006, Chicago Blackhawks, 2010, {2}
Lafleur, Guy, Montreal Canadiens, 1973-76-77-78-79, {5}
Lake, Fred, Ottawa Senators, 1909-10-11, {3}
Lalonde, Newsy, Montreal Canadiens, 1916, {1}
Lalor, Mike, Montreal Canadiens, 1986, {1}
Lamb, Mark, Edmonton Oilers, 1990, {1}
Lambert, Yvon, Montreal Canadiens, 1976-77-78-79, {4}
Lamoureux, Leo, Montreal Canadiens, 1944–46, {2}
Lane, Gord, New York Islanders, 1980-81-82-83, {4}
Lane, Myles, Boston Bruins, 1929, {1}
Langelle, Pete, Toronto Maple Leafs, 1942, {1}
Langenbrunner, Jamie, Dallas Stars, 1999, New Jersey Devils, 2003, {2}
Langevin, Dave, New York Islanders, 1980-81-82-83, {4}
Langlois, Albert, Montreal Canadiens, 1958-59-60, {3}
Langway, Rod, Montreal Canadiens, 1979, {1}
Laperriere, Jacques, Montreal Canadiens, 1965-66-68-69-71-73, {6}
Lapointe, Guy, Montreal Canadiens, 1971-73-76-77-78-79, {6}
Lapointe, Martin, Detroit Red Wings, 1997–98, {2}
Larionov, Igor, Detroit Red Wings, 1997-98-2002, {3}
Larmer, Steve, New York Rangers, 1994, {1}
Larochelle, Wildor, Montreal Canadiens, 1930–31, {2}
Larocque, Michel, Montreal Canadiens, 1976-77-78-79, {4}
Larose, Chad, Carolina Hurricanes, 2006, {1}
Larose, Claude, Montreal Canadiens, 1965-66-68-71-73, {5}
Larouche, Pierre, Montreal Canadiens, 1978–79, {2}
Laviolette, Jack, Montreal Canadiens, 1916, {1}
Leach, Jamie, Pittsburgh Penguins, 1992, {1}
Leach, Reggie, Philadelphia Flyers, 1975, {1}
Lebeau, Stephan, Montreal Canadiens, 1993, {1}
Lebda, Brett, Detroit Red Wings, 2008, {1}
Lecavalier, Vincent, Tampa Bay Lightning, 2004, {1}
LeClair, John, Montreal Canadiens, 1956–57, {2}
LeClair, John, Montreal Canadiens, 1993, {1}
Leddy, Nick, Chicago Blackhawks, 2013, {1}
Leduc, Albert, Montreal Canadiens, 1930–31, {2}
Leeman, Gary, Montreal Canadiens, 1993, {1}
Leetch, Brian, New York Rangers, 1994, {1}
Lefebvre, Sylvain, Colorado Avalanche, 1996, {1}
Lefley, Chuck, Montreal Canadiens, 1971–73, {2}
Legace, Manny, Detroit Red Wings, 2002, {1}
Lehman, Hugh, Vancouver Millionaires, 1915, {1}
Lehtinen, Jere, Dallas Stars, 1999, {1}
Lemaire, Jacques, Montreal Canadiens, 1968-69-71-73-76-77-78-79, {8}
Lemay, Maurice, Edmonton Oilers, 1987, {1}
Lemieux, Claude, Montreal Canadiens, 1986, New Jersey Devils, 1995-2000, Colorado Avalanche, 1996, {4}
Lemieux, Mario, Pittsburgh Penguins, 1991–92, {2}
Leonard, George, Quebec Bulldogs, 1912, {1}
Lepine, Alfred, Montreal Canadiens, 1930–31, {2}
Leschyshyn, Curtis, Colorado Avalanche, 1996, {1}
Lesieur, Art, Montreal Canadiens, 1931, {1}
LeSueur, Percy, Ottawa Senators, 1909–10–11, {3}
Lesuk, Bill, Boston Bruins, 1970, {1}
Leswick, Jack, Chicago Blackhawks, 1934, {1}
Leswick, Tony, Detroit Red Wings, 1952–54–55, {3}
Letang, Kris, Pittsburgh Penguins, 2009–16, {2}
Levinsky, Alex, Toronto Maple Leafs, 1932, Chicago Blackhawks, 1938, {2}
Lewicki, Dannny, Toronto Maple Leafs, 1951, {1}
Lewis, Gordon, Montreal Victorias, 1896-97-98-99, {4}
Lewis, Trevor, Los Angeles Kings, 2012-14, {2}
Lewis, Herbie, Detroit Red Wings, 1936–37, {2}
Lidstrom, Nicklas, Detroit Red Wings, 1997–98–2002–08, {4}
Lidster, Doug, New York Rangers, 1994, Dallas Stars, 1999, {2}
Liffiton, Charles, Montreal AAA, 1902–03, {2}
Liffiton, Ernie, Montreal Wanderers, 1908, {1}
Lilja, Andreas, Detroit Red Wings, 2008, {1}
Lindsay, Ted, Detroit Red Wings, 1950–52–54–55, {4}
Lindstrom, Willy, Edmonton Oilers, 1984–85, {2}
Linseman, Ken, Edmonton Oilers, 1984, {1}
Liscombe, Carl, Detroit Red Wings, 1943, {1}
Litzenberger, Ed, Chicago Blackhawks, 1961, Toronto Maple Leafs, 1962–63–64, {4}
Loktionov, Andrei, Los Angeles Kings, 2012, {1}
Loney, Troy, Pittsburgh Penguins, 1991–92, {2}
Lonsberry, Ross, Philadelphia Flyers, 1974–75, {2}
Loob, Hakan, Calgary Flames, 1989, {1}
Lorentz, Jim, Boston Bruins, 1970, {1}
Lorimer, Bob, New York Islanders, 1980–81, {2}
Loughlin, Clem, Victoria Cougars, 1925, {1}
Lovejoy, Ben, Pittsburgh Penguins, 2016, {1}
Lowe, George, Montreal AAA, 1893, {1}
Lowe, Kevin, Edmonton Oilers, 1984–85–87–88–90, New York Rangers, 1994, {6}
Lucic, Milan, Boston Bruins, 2011, {1}
Ludwig, Craig, Montreal Canadiens, 1986, Dallas Stars, 1999, {2}
Lukowich, Brad, Dallas Stars, 1999, Tampa Bay Lightning, 2004, {2}
Lumley, David, Edmonton Oilers, 1984–85, {2}
Lumley, Harry, Detroit Red Wings, 1950, {1}
Lupien, Gilles, Montreal Canadiens, 1978–79, {2}
Lynn, Vic, Toronto Maple Leafs, 1947–48–49, {3}
Maatta, Olli, Pittsburgh Penguins, 2016, {1}
MacAdam, Al, Philadelphia Flyers, 1974, {1}
MacDonald, Kilby, New York Rangers, 1940, {1}
MacInnis, Al, Calgary Flames, 1989, {1}
MacKay, Calum, Montreal Canadiens, 1953, {1}
MacKay, Duncan, Vancouver Millionaires, 1915, Boston Bruins, 1929, {2}
MacKell, Fleming, Toronto Maple Leafs, 1949–51, {2}
MacKell, Jack, Ottawa Senators, 1920–21, {2}
MacKenzie, Bill, Montreal Maroons, 1935, Chicago Blackhawks, 1938, {2}
Mackie, Howie, Detroit Red Wings, 1937, {1}
MacLean, John, New Jersey Devils, 1995, {1}
MacLeish, Rick, Philadelphia Flyers, 1974–75, {2}
MacLellan, Brian, Calgary Flames, 1989, {1}
MacMillan, John, Toronto Maple Leafs, 1962–63, {2}
Macoun, Jamie, Calgary Flames, 1989, Detroit Red Wings, 1998, {2}
MacPherson, James, Montreal Canadiens, 1953, {1}
MacTavish, Craig, Edmonton Oilers, 1987-88-90, New York Rangers, 1994, {4}
Madden, John, New Jersey Devils, 2000–03, Chicago Blackhawks, 2010, {3}
Mahovlich, Frank, Toronto Maple Leafs, 1962-63-64-67, Montreal Canadiens, 1971–73, {6}
Mahovlich, Peter, Montreal Canadiens, 1971-73-76-77, {4}
Majeau, Fern, Montreal Canadiens, 1944, {1}
Maki, Ronald, Chicago Blackhawks, 1961, {1}
Malakhov, Vladimir, New Jersey Devils, 2000, {1}
Maley, David, Montreal Canadiens, 1986, {1}
Mallen, Ken, Ottawa Senators, 1910, Vancouver Millionaires, 1915, {2}
Malkin, Evgeni, Pittsburgh Penguins, 2009–16, {2}
Malone, Jeff, Quebec Bulldogs, 1913, {1}
Malone, Joe, Quebec Bulldogs, 1912–13, {2}
Maltby, Kirk, Detroit Red Wings, 1997-98-2002-08, {4}
Mantha, Georges, Montreal Canadiens, 1930–31, {2}
Mantha, Sylvio, Montreal Canadiens, 1924-30-31, {3}
Marcetta, Milan, Toronto Maple Leafs, 1967, {1}
March, Harold, Chicago Blackhawks, 1934–38, {2}
Marchand, Brad, Boston Bruins, 2011, {1}
Marchant, Todd, Anaheim Ducks, 2007, {1}
Marcotte, Don, Boston Bruins, 1970–72, {2}
Marini, Hector, New York Islanders, 1981–82, {2}
Marker, Gus, Montreal Maroons, 1935, {1}
Marks, Jack, Quebec Bulldogs, 1912–13, Toronto Arenas, 1918, {3}
Marshall, Grant, Dallas Stars, 1999, New Jersey Devils, 2003, {2}
Marshall, Jack, Winnipeg Victorias, 1901, Montreal AAA, 1902–03, Montreal Wanderers, 1907–10, Toronto Blueshirts, 1914, {6}
Marshall, Don, Montreal Canadiens, 1956-57-58-59-60, {5}
Martin, Clare, Detroit Red Wings, 1950, {1}
Martinez, Alec, Los Angeles Kings, 2012-14, {2}
Masnick, Paul, Montreal Canadiens, 1953, {1}
Matteau, Stephane, New York Rangers, 1994, {1}
Matvichuk, Richard, Dallas Stars, 1999, {1}
Matz, Johnny, Vancouver Millionaires, 1915, {1}
May, Brad, Anaheim Ducks, 2007, {1}
Mayers, Jamal, Chicago Blackhawks, 2013, {1}
Mazur, Eddie, Montreal Canadiens, 1953, {1}
McAlpine, Chris, New Jersey Devils, 1995, {1}
McCaffrey, Bret, Montreal Canadiens, 1930–31, {2}
McCarty, Darren, Detroit Red Wings, 1997-98-2002-08, {4}
McClelland, Kevin, Edmonton Oilers, 1984-85-87-88, {4}
McCool, Frank, Toronto Maple Leafs, 1945, {1}
McCormack, John, Toronto Maple Leafs, 1951, Montreal Canadiens, 1953, {2}
McCreedy, John, Toronto Maple Leafs, 1942–45, {2}
McCrimmon, Brad, Calgary Flames, 1989, {1}
McDonald, Unknown, Ottawa Senators, 1905, {1}
McDonald, Alvin, Montreal Canadiens, 1958-59-60, Chicago Blackhawks, 1961, {4}
McDonald, Andy, Anaheim Ducks, 2007, {1}
McDonald, Jack, Quebec Bulldogs, 1912, {1}
McDonald, Lanny, Calgary Flames, 1989, {1}
McDonald, Wilfred, Detroit Red Wings, 1936-37, Toronto Maple Leafs, 1942, {3}
McDougall, Hartland, Montreal Victorias, 1895-96-97-98, {4}
McDougall, Bob, Montreal Victorias, 1895-96-97-98-99, {5}
McEachern, Shawn, Pittsburgh Penguins, 1992, {1}
McEwen, Mike, New York Islanders, 1981-82-83, {3}
McFadden, Jim, Detroit Red Wings, 1950, {1}
McFadyen, Don, Chicago Blackhawks, 1934, {1}
McLea, Ernest, Montreal Victorias, 1896-97-98-99, {4}
McGee, Frank, Ottawa Senators, 1903-04-05-06, {4}
McGee, Jim, Ottawa Senators, 1904, {1}
McGiffen, Roy, Toronto Blueshirts, 1914, {1}
McGimsie, Billy, Kenora Thistles, 1907, {1}
McKay, Doug, Detroit Red Wings, 1950, {1}
McKay, Randy, New Jersey Devils, 1995–2000, {2}
McKendry, Alex, New York Islanders, 1980, {1}
McKenna, Joe, Montreal Shamrocks, 1899–1900, {2}
McKenney, Don, Toronto Maple Leafs, 1964, {1}
McKenzie, Jim, New Jersey Devils, 2003, {1}
McKenzie, John, Boston Bruins, 1970–72, {2}
McLean, Jack, Toronto Maple Leafs, 1945, {1}
McLellan, David, Montreal Victorias, 1897, {1}
McMahon, Mike Sr., Montreal Canadiens, 1944, {1}
McManus, Sammy, Montreal Maroons, 1935, {1}
McNab, Max, Detroit Red Wings, 1950, {1}
McNamara, George, Toronto Maple Leafs, 1914, {1}
McNamara, Harold, Montreal Canadiens, 1916, {1}
McNamara, Howard, Montreal Canadiens, 1916, {1}
McNeil, Gerry, Montreal Canadiens, 1953-57-58, {3}
McQuaid, Adam, Boston Bruins, 2011, {1}
McQuestion, Harry, Detroit Red Wings, 1950, {1}
McPhee, Mike, Montreal Canadiens, 1986, {1}
McReavy, Pat, Boston Bruins, 1939–41, {2}
McRobie, Fred, Montreal Victorias, 1899, {1}
McSorley, Marty, Edmonton Oilers, 1987–88, {2}
Meech, Derek, Detroit Red Wings, 2008, {1}
Meeker, Howie, Toronto Maple Leafs, 1947-48-49-51, {4}
Meeking, Harry, Toronto Arenas, 1918, Victoria Cougars, 1925, {2}
Meger, Paul, Montreal Canadiens, 1953, {1}
Melanson, Roland, New York Islanders, 1981-82-83, {3}
Melnyk, Larry, Edmonton Oilers, 1984–85, {2}
Menard, Henri, Montreal Wanderers, 1906, {1}
Merrill, Horace, Ottawa Senators, 1920, {1}
Merrick, Wayne, New York Islanders, 1980-81-82-83, {4}
Merritt, George, Winnipeg Victorias, 1896, {1}
Messier, Eric, Colorado Avalanche, 2001, {1}
Messier, Mark, Edmonton Oilers, 1984-85-87-88-90, New York Rangers, 1994, {6}
Messy, Harry, Montreal Victorias, 1897, {1}
Metz, Don, Toronto Maple Leafs, 1942–45, 1947-48-49, {5}
Metz, Nick, Toronto Maple Leafs, 1942-45-47-48, {4}
Michayluk, Dave, Pittsburgh Penguins, 1992, {1}
Mikita, Stan, Chicago Blackhawks, 1961, {1}
Miller, Andrew, Anaheim Ducks, 2007, {1}
Miller, Earl, Toronto Maple Leafs, 1932, {1}
Miller, Joe, New York Rangers, 1928, {1}
Miller, Bill, Montreal Maroons, 1935, {1}
Mironov, Dmitri, Detroit Red Wings, 1998, {1}
Mitchell, Ivan, Toronto St. Pats, 1922, {1}
Mitchell, Willie, Los Angeles Kings, 2012-14, {2}
Modano, Mike, Dallas Stars, 1999, {1}
Modin, Fredrik, Tampa Bay Lightning, 2004, {1}
Moen, Travis, Anaheim Ducks, 2007, {1}
Mogilny, Alexander, New Jersey Devils, 2000, {1}
Molson, Percy, Montreal Victorias, 1897, {1}
Momesso, Sergio, Montreal Canadiens, 1986, {1}
Mondou, Armand, Montreal Canadiens, 1930–31, {2}
Mondou, Pierre, Montreal Canadiens, 1977-78-79, {3}
Moog, Andy, Edmonton Oilers, 1984-85-87, {3}
Moore, Alfie, Chicago Blackhawks, 1938, {1}
Moore, Arthur, Ottawa Senators, 1903-04-05-06, {4}
Moore, Dickie, Montreal Canadiens, 1953-56-57-58-59-60, {6}
Moran, Patrick, Quebec Bulldogs, 1912–13, {2}
Morenz, Howie, Montreal Canadiens, 1924-30-31, {3}
Morris, Bernie, Seattle Metropolitans, 1917, {1}
Morris, Elwyn, Toronto Maple Leafs, 1945, {1}
Morrow, Ken, New York Islanders, 1980-81-82-83, {4}
Mortson, Gus, Toronto Maple Leafs, 1947-48-49-51, {4}
Mosdell, Ken, Montreal Canadiens, 1946-53-56-59, {4}
Motter, Alex, Detroit Red Wings, 1943, {1}
Motzko, Joe, Anaheim Ducks, 2007, {1}
Mowers, Johnny, Detroit Red Wings, 1943, {1}
Muir, Bryan, Colorado Avalanche, 2001, {1}
Mullen, Joe, Calgary Flames, 1989, Pittsburgh Penguins, 1991–92, {3}
Muller, Kirk, Montreal Canadiens, 1993, {1}
Mummery, Harry, Quebec Bulldogs, 1913, Toronto Arenas, 1918, {2}
Muni, Craig, Edmonton Oilers, 1987-88-90, {3}
Munro, Dunc, Montreal Maroons, 1926, {1}
Murdoch, Bob, Montreal Canadiens, 1971–73, {2}
Murdoch, Murray, New York Rangers, 1928–33, {2}
Murphy, Joe, Edmonton Oilers, 1990, {1}
Murphy, Larry, Pittsburgh Penguins, 1991–92, Detroit Red Wings, 1997–98, {4}
Murphy, Ron, Chicago Blackhawks, 1961, Boston Bruins, 1970, {2}
Murray, Matt, Pittsburgh Penguins, 2016, {1}
Murray, Troy, Colorado Avalanche, 1996, {1}
Murzyn, Dana, Calgary Flames, 1989, {1}
Mussen, Auberdy, Montreal AAA, 1894, {1}
Mussen, Clarence, Montreal AAA, 1894, {1}
Muzzin, Jake, Los Angeles Kings, 2014, {1}
Myre, Phil, Montreal Canadiens, 1971, {1}
Napier, Mark, Montreal Canadiens, 1979, Edmonton Oilers, 1985, {2}
Naslund, Mats, Montreal Canadiens, 1986, {1}
Nattress, Rick, Calgary Flames, 1989, {1}
Needham, Mike, Pittsburgh Penguins, 1992, {1}
Neckar, Stanislav, Tampa Bay Lightning, 2004, {1}
Nemchinov, Sergei, New York Rangers, 1994, New Jersey Devils, 2000, {2}
Nesterenko, Eric, Chicago Blackhawks, 1961, {1}
Nevin, Bob, Toronto Maple Leafs, 1962–63, {2}
Nicholson, Billy, Montreal AAA, 1902–03, {2}
Niedermayer, Rob Jr., Anaheim Ducks, 2007, {1}
Niedermayer, Scott, New Jersey Devils, 1995-2000-03, Anaheim Ducks, 2007, {4}
Niemi, Antti, Chicago Blackhawks, 2010, {1}
Nieminen, Ville, Colorado Avalanche, 2001, {1}
Nieuwendyk, Joe, Calgary Flames, 1989, Dallas Stars, 1999, New Jersey Devils, 2003, {3}
Nighbor, Frank, Vancouver Millionaires, 1915, Ottawa Senators, 1920-21-23-27, {5}
Nilan, Chris, Montreal Canadiens, 1986, {1}
Nilsson, Kent, Edmonton Oilers, 1987, {1}
Noble, Reg, Toronto Maple Leafs, 1918–22, Montreal Maroons, 1926, {3}
Nordstrom, Joakim, Chicago Blackhawks, 2015, {1}
Nolan, Jordan, Los Angeles Kings, 2012-14, {2}
Nolan, Pat, Toronto Maple Leafs, 1922, {1}
Nolet, Simon, Philadelphia Flyers, 1974, {1}
Noonan, Brian, New York Rangers, 1994, {1}
Northcott, Lawrence, Montreal Maroons, 1935, {1}
Nystrom, Bob, New York Islanders, 1980-81-82-83, {4}
Nyrop, Bill, Montreal Canadiens, 1976-77-78, {3}
Oatman, Eddie, Quebec Bulldogs, 1912, {1}
O'Brien, Eddie, Montreal AAA, 1894, {1}
O'Connor, Herbert “Buddy”, Montreal Canadiens, 1944–46, {2}
Odelein, Lyle, Montreal Canadiens, 1993, {1}
O'Donnell, Sean, Anaheim Ducks, 2007, {1}
Oduya, Johnny, Chicago Blackhawks, 2013-15, {2}
Olausson, Fredrik, Detroit Red Wings, 2002, {1}
Olczyk, Eddie, New York Rangers, 1994, {1}
Oliver, Harold, Boston Bruins, 1929, {1}
Oliwa, Krzysztof, New Jersey Devils, 2000, {1}
Olmstead, Bert, Montreal Canadiens, 1953-56-57-58, Toronto Maple Leafs, 1962, {5}
O’Neill, Tom, Toronto Maple Leafs, 1945, {1}
Orr, Bobby, Boston Bruins, 1970–72, {2}
Orlando, Jimmy, Detroit Red Wings, 1937–43, {2}
Orpik, Brooks, Pittsburgh Penguins, 2009, {1}
Osgood, Chris, Detroit Red Wings, 1997-98-2008, {3}
Otto, Joel, Calgary Flames, 1989, {1}
Owen, George, Boston Bruins, 1929, {1}
Ozolinsh, Sandis, Colorado Avalanche, 1996, {1}
Paek, Jim, Pittsburgh Penguins, 1991–92, {2}
Pahlsson, Samuel, Anaheim Ducks, 2007, {1}
Paille, Daniel, Boston Bruins, 2011, {1}
Palangio, Pete, Chicago Blackhawks, 1938, {1}
Pandolfo, Jay, New Jersey Devils, 2000–03, {2}
Pappin, Jim, Toronto Maple Leafs, 1964–67, {2}
Parent, Bernie, Philadelphia Flyers, 1974–75, {2}
Parker, Scott, Colorado Avalanche, 2001, {1}
Parros, George, Anaheim Ducks, 2007, {1}
Paton, Tom, Montreal AAA, 1893, {1}
Patrick, Frank, Vancouver Millionaires, 1915, {1}
Patrick, Lester, Montreal Wanderers, 1906–07, New York Rangers, 1928, {3}
Patrick, Lynn, New York Rangers, 1940, {1}
Patrick, Murray, New York Rangers, 1940, {1}
Patterson, Colin, Calgary Flames, 1989, {1}
Pavelich, Marty, Detroit Red Wings, 1950-52-54-55, {4}
Pearson, Tanner, Los Angeles Kings, 2014, {1}
Pederson, Barry, Pittsburgh Penguins, 1991, {1}
Peluso, Mike, New Jersey Devils, 1995, {1}
Penner, Dustin, Anaheim Ducks, 2007, Los Angeles Kings, 2012, {2}
Penney, Steve, Montreal Canadiens, 1986, {1}
Peplinski, Jim, Calgary Flames, 1989, {1}
Perrin, Eric, Tampa Bay Lightning, 2004, {1}
Perry, Corey, Anaheim Ducks, 2007, {1}
Persson, Stefan, New York Islanders, 1980-81-82-83, {4}
Peters, Garry, Montreal Canadiens, 1965, Boston Bruins, 1972, {2}
Peters, Jimmy Sr., Montreal Canadiens, 1946, Detroit Red Wings, 1950–54, {3}
Petrov, Oleg, Montreal Canadiens, 1993, {1}
Pettinger, Eric, Boston Bruins, 1929, {1}
Pettinger, Gord, New York Rangers, 1933, Detroit Red Wings, 1936–37, Boston Bruins, 1939, {4}
Peverley, Rich, Boston Bruins, 2011, {1}
Phillips, Bill, Montreal Maroons, 1926, {1}
Phillips, Russell, Kenora Thistles, 1907, {1}
Phillips, Tommy, Montreal AAA, 1903, Kenora Thistles, 1907, {2}
Picard, Noel, Montreal Canadiens, 1965, {1}
Pietrangelo, Frank, Pittsburgh Penguins, 1991, {1}
Pike, Alf, New York Rangers, 1940, {1}
Pilote, Pierre, Chicago Blackhawks, 1961, {1}
Pitre, Didier, Montreal Canadiens, 1916, {1}
Plamondon, Gerry, Montreal Canadiens, 1946, {1}
Plante, Derek, Dallas Stars, 1999, {1}
Plante, Jacques, Montreal Canadiens, 1953-56-57-58-59-60, {6}
Plasse, Michel, Montreal Canadiens, 1973, {1}
Podein, Shjon, Colorado Avalanche, 2001, {1}
Poile, Norman,Toronto Maple Leafs, 1947, {1}
Polich, Mike, Montreal Canadiens, 1977, {1}
Portland, Jack, Boston Bruins, 1939, {1}
Potvin, Denis, New York Islanders, 1980-81-82-83, {4}
Potvin, Jean, New York Islanders, 1980–81, {2}
Poulin, George, Montreal Canadiens, 1916, {1}
Pouzar, Jaroslav, Edmonton Oilers, 1984-85-87, {3}
Power, James, Quebec Bulldogs, 1913, {1}
Pratt, Nolan, Colorado Avalanche, 2001, Tampa Bay Lightning, 2004, {2}
Pratt, Water, New York Rangers, 1940, Toronto Maple Leafs, 1945, {2}
Price, Noel, Montreal Canadiens, 1966, {1}
Priestlay, Ken, Pittsburgh Penguins, 1992, {1}
Primeau, Joe, Toronto Maple Leafs, 1932, {1}
Prodgers, George, Quebec Bulldogs, 1912, Montreal Canadiens, 1916, {2}
Pronger, Chris, Anaheim Ducks, 2007, {1}
Pronovost, Andre, Montreal Canadiens, 1957-58-59-60, {4}
Pronovost, Marcel, Detroit Red Wings, 1950-52-54-55, Toronto Maple Leafs, 1967, {5}
Provost, Claude, Montreal Canadiens, 1956-57-58-59-60-65-66-68-69, {9}
Pryakhin, Sergei, Calgary Flames, 1989, {1}
Prystai, Metro, Detroit Red Wings, 1952–54, {2}
Pulford, Harvey, Ottawa Senators, 1903-04-05-06, {4}
Pulford, Bob, Toronto Maple Leafs, 1962-63-64-67, {4}
Pullan, William, Montreal Victorias, 1895, {1}
Pushor, Jamie, Detroit Red Wings, 1997, {1}
Pusie, Jean, Montreal Canadiens, 1931, {1}
Quick, Jonathan, Los Angeles Kings, 2012-14, {2}
Raanta, Antti, Chicago Blackhawks, 2015, {1}
Raciot, Andre, Montreal Canadiens, 1993, {1}
Racine, Bruce, Pittsburgh Penguins, 1991, {1}
Rafalski, Brian, New Jersey Devils, 2000–03, Detroit Red Wings, 2008, {3}
Ramage, Rob, Calgary Flames, 1989, Montreal Canadiens, 1993, {2}
Randall, Ken, Toronto Arenas, 1918, Toronto St. Pats, 1922, {2}
Ranford, Bill, Edmonton Oilers, 1988–90, {2}
Rankin, Norm, Montreal Victorias, 1895, {1}
Rask, Tuukka, Boston Bruins, 2011, {1}
Reardon, Ken, Montreal Canadiens, 1946, {1}
Reardon, Terry, Boston Bruins, 1939–41, {2}
Reaugh, Daryl, Edmonton Oilers, 1988, {1}
Reay, Billy, Montreal Canadiens, 1946–53, {2}
Recchi, Mark, Pittsburgh Penguins, 1991, Carolina Hurricanes, 2006, Boston Bruins, 2011, {3}
Reddick, Eldon, Edmonton Oilers, 1990, {1}
Redmond, Michael, Montreal Canadiens, 1968–69, {2}