Home Forums All Things Catholic How many saints are there?

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #568

    Does anyone know how many saints have actually been canonized? I think there’s a few thousand, but I am wondering if anyone knows the exact number.

    #7371
    Anonymous
    Inactive

    There are over 10,000 named saints and beati from history, the Roman Martyology and Orthodox sources, but no definitive “head count”.

    #7372
    Anonymous
    Inactive

    There’s an attempt at a list here:
    http://www.catholic.org/saints/stindex.php

    If you want, I can write a quick script that would count them.

    #7373
    Anonymous
    Inactive

    Okay, I did it anyway… There appear to be 5,960 unique saints in that index.

    #7374
    Anonymous
    Inactive

    That’s allot did you actually count them?

    #7375
    Anonymous
    Inactive

    Yes, in a manner of speaking. I had the computer count them:

    [code:htszz88u]#!/usr/bin/perl

    use strict;

    my %saints;

    for(’A’..’Z’)
    {
    my $page = `wget -O – http://www.catholic.org/saints/stindex.php?lst=$_`;
    while($page =~ s/saint.php?saint_id=(d+)//)
    {
    $saints{$1} = 1;
    }
    }

    print scalar(keys(%saints))."n";
    [/code:htszz88u]

    #7376

    I ripped the entire Bible from the USCCB’s website and put it in XML format one time.

    I did mine in PHP though.

    #7379
    Anonymous
    Inactive

    you guys are amazing,It took me two hours to count them by hand

    #7380
    Anonymous
    Inactive

    [quote:5x9emrd0]you guys are amazing,It took me two hours to count them by hand[/quote:5x9emrd0]

    [color=green:5x9emrd0]lol. That’s funny stuff Weather. Now I have to wipe A&W root beer off my monitor.[/color:5x9emrd0]

    #7381
    Anonymous
    Inactive

    Hokey smokes, weather, did you really count them? What result did you get?

    Jon, what did you end up doing with your XML Bible?

    #7382

    [quote:320db39h]Jon, what did you end up doing with your XML Bible?[/quote:320db39h]
    Nothing, yet. I was going to find a way to integrate it into this site, but I haven’t had any time for development.

Viewing 11 posts - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.