The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Acme::ID::CompanyName - Generate nice-sounding, generic Indonesian company names

VERSION

This document describes version 0.007 of Acme::ID::CompanyName (from Perl distribution Acme-ID-CompanyName), released on 2021-05-07.

DESCRIPTION

FUNCTIONS

gen_generic_ind_company_names

Usage:

 gen_generic_ind_company_names(%args) -> any

Generate nice-sounding, generic Indonesian company names.

Examples:

  • Generate five random PT names:

     gen_generic_ind_company_names( num_names => 5);

    Result:

     [
       "PT Hulu Humania Harmoni",
       "PT Jaya Cipta Indoakurasi",
       "PT Baru Berjaya Legenda",
       "PT Normal Zona Gempita",
       "PT Multi Gelora Baswara",
     ]
  • Generate three PT names with desired initials "ACME":

     gen_generic_ind_company_names( num_names => 3, desired_initials => "ACME");

    Result:

     [
       "PT Aksara Catur Mekar Elektronik",
       "PT Anugerah Cendrawasih Mandala Esa",
       "PT Asaindo Cakra Mandala Elang",
     ]

This function is not exported by default, but exportable.

Arguments ('*' denotes required arguments):

  • add_prefixes => bool (default: 1)

  • add_suffixes => bool (default: 1)

  • desired_initials => str

  • num_names => int (default: 1)

  • num_words => int (default: 3)

  • type => str (default: "PT")

    Just a string to be prepended before the name.

Return value: (any)

HOMEPAGE

Please visit the project's homepage at https://metacpan.org/release/Acme-ID-CompanyName.

SOURCE

Source repository is at https://github.com/perlancar/perl-Acme-ID-CompanyName.

BUGS

Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=Acme-ID-CompanyName

When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.

AUTHOR

perlancar <perlancar@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2021, 2017 by perlancar@cpan.org.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.