import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Example {
public static void main(String[] args) {
final String regex = "^(?:TV-)?(?:\\b(?!PG-13|NC-17)[A-Z]{1,3}[\\/ +-]?(?=[0-9])|[+-]?\\b)(?:\n"
+ "(?<KIDS_3>[0-4]|(?:AL|APTA|TV-Y)\\b)|\n"
+ "(?<GENERAL_7>[5-9]|(?:G|U:(?!FR|IN)|A:ES|A:MX|A:JP|T:IT|L:BR|S:FI|I:HK)\\b)|\n"
+ "(?<GUIDED_11>1[01]|(?:PG(?!-)|U:|IIA?:HK|GP:US|APPROVED:US)\\b)|\n"
+ "(?<TEENS_13>1[23]|(?:PG-13|U|TEEN|B:MX|B:JP|IIB:HK)\\b)|\n"
+ "(?<MATURE_15>1[45]|(?:M|MA|MATURE|C:JP)\\b)|\n"
+ "(?<RESTRICTED_17>1[67]|(?:R|C:MX|D:JP)\\b)|\n"
+ "(?<ADULTS_18>(?:1[89]|2[01])|(?:NC-17|ADULT|XXX|X|A:CA|A:IN|Z:JP|D:MX|III:HK)\\b))[A-Z]*\\b";
final String string = " IMDB\n\n"
+ " Australia\n"
+ "G - General\n"
+ "PG - Parental Guidance for under 15\n"
+ "7+ - Older kids (7+)\n"
+ "13+ - Teens (13+)\n"
+ "M - 15+ Recommended\n"
+ "MA - 15+ Restricted (Under 15 only with an adult)\n"
+ "16+ - Young adults (16+)\n"
+ "R - Passed only for persons 18 and over\n"
+ "18+ - Adults (18+)\n"
+ "X - Sexually Explicit, 18s and over (Possibly only videos)\n\n"
+ " Belgium\n"
+ "KT - Suitable for all (deprecated)\n"
+ "KNT - Unsuitable for children (deprecated)\n"
+ "AL/Tous - Suitable for all\n"
+ "6 - Passed only for persons 6 and over\n"
+ "9 - Passed only for persons 9 and over\n"
+ "12 - Passed only for persons 12 and over\n"
+ "14 - Passed only for persons 14 and over\n"
+ "16 - Passed only for persons 16 and over\n"
+ "18 - Passed only for persons 18 and over\n\n"
+ " Brazil\n"
+ "Livre - Suitable for all\n"
+ "12 - Passed only for persons 12 and over\n"
+ "14 - Passed only for persons 14 and over\n"
+ "16 - Passed only for persons 16 and over\n"
+ "18 - Passed only for persons 18 and over\n\n"
+ " Canada\n"
+ "G - Suitable for all\n"
+ "PG - Parental Guidance\n"
+ "13+ - Passed only for persons 13 and over (under 13 with adult)\n"
+ "14A - Children under 14 must be accompanied by an adult\n"
+ "16+ - Passed only for persons 16 and over\n"
+ "18A - Children under 18 must be accompanied by an adult (except Maritimes & Manitoba: no under 14s)\n"
+ "18+ - Passed only for persons 18 and over\n"
+ "R - Passed only for persons 18 and over\n"
+ "A:CA @ - Passed only for persons 18 and over (sexual content)\n"
+ "TV-Y - Kids\n"
+ "TV-G - Kids\n"
+ "TV-Y7 - Kids\n"
+ "TV-Y7-FV - Kids\n"
+ "TV-PG - Kids\n"
+ "PG-13 - Teens\n"
+ "TV-14 - Teens\n"
+ "NC-17 - Adult\n"
+ "TV-MA - Adult\n\n"
+ " Chile\n"
+ "TE - Suitable for all\n"
+ "14 - Passed only for persons 14 and over\n"
+ "18 - Passed only for persons 18 and over\n\n"
+ " Denmark\n"
+ "A:DK @ - Allowed for all [1913-]\n"
+ "7 - Allowed for all, but unsuitable for persons under 7 [1980-]\n"
+ "11 - Allowed for persons 11 or older (7 with adult) [1997-]\n"
+ "15 - Allowed for persons 15 or older (7 with adult) [1997-]\n"
+ "12 - Allowed for persons 12 or older [1969-1997]\n"
+ "16 - Allowed for persons 16 or older [1913-1997]\n\n"
+ " Finland\n"
+ "S - Suitable for all\n"
+ "K-8 - Passed only for persons 8 and over\n"
+ "K-8/K-5 - Passed only for persons 8 and over (of 5 and over with an adult)\n"
+ "K-10/K-7 - Passed only for persons 10 and over (or 7 and over with an adult)\n"
+ "K-10 - Passed only for persons 10 and over\n"
+ "K-12 - Passed only for persons 12 and over\n"
+ "K-12/K-9 - Passed only for persons 12 and over (or 9 and over with an adult)\n"
+ "K-13 - Passed only for persons 13 and over\n"
+ "K-14 - Passed only for persons 14 and over\n"
+ "K-16 - Passed only for persons 16 and over\n"
+ "K-18 - Passed only for persons 18 and over\n\n"
+ " France\n"
+ "U:FR @ Tous Publics - For all audiences\n"
+ "U!:FR @ Tous Publics (avec avertissement) - For all audiences with warning\n"
+ "0+ - Suitable for all ages\n"
+ "6+ - Some scenes may be unsuitable for children under 6\n"
+ "9+ - Some scenes may be unsuitable for children under 9\n"
+ "10 - Passed only for persons 10 and over (previously \"accord parental souhaité\")\n"
+ "12 - Passed only for persons 12 and over\n"
+ "14+ - Some scenes may be unsuitable for children under 14\n"
+ "16 - Passed only for persons 16 and over\n"
+ "18 - Passed only for persons 18 and over\n"
+ "X - For pornographic movies\n\n"
+ " Germany\n"
+ "0 - May be viewed by all audiences (ohne Altersbeschränkung)\n"
+ "6 - Passed only for persons 6 and over\n"
+ "12 - Passed only for persons 12 and over\n"
+ "16 - Passed only for persons 16 and over\n"
+ "18 - Passed only for persons 18 and over\n"
+ "Not rated (No certificate at all)\n\n"
+ " Hong Kong\n"
+ "I:HK @ - Suitable for all ages\n"
+ "IIA:HK @ - Not suitable for children\n"
+ "IIB:HK @ - Not suitable for young persons and children\n"
+ "III:HK @ - Persons aged 18 and above only\n\n"
+ " Iceland\n"
+ "L - Suitable for all\n"
+ "LH - Not suitable for very young viewers (video only) [-2006]\n"
+ "7 - Passed only for persons 7 and over [2006-]\n"
+ "10 - Passed only for persons 10 and over (theatrical only) [-2006]\n"
+ "12 - Passed only for persons 12 and over\n"
+ "14 - Passed only for persons 14 and over (theatrical only) [-2006]\n"
+ "16 - Passed only for persons 16 and over\n"
+ "18 - Passed only for persons 18 and over [2006-]\n\n"
+ " India\n"
+ "All - Suitable for all\n"
+ "PG - Parental guidance required\n"
+ "12+ - Suitable for audiences 12 and over\n"
+ "15+ - Suitable for audiences 15 and over\n"
+ "UA 7+ - Unrestricted Public Exhibition - but with a word of caution that Parental discretion required for children below 7 years\n"
+ "UA 13+ - Unrestricted Public Exhibition - but with a word of caution that Parental discretion required for children below 13 years\n"
+ "UA 16+ - Unrestricted Public Exhibition - but with a word of caution that Parental discretion required for children below 16 years\n\n"
+ " Ireland\n"
+ "G - Suitable for children of schoolgoing age\n"
+ "PG - Parental guidance suggested for younger children\n"
+ "12A - Children under 12 may attend only if accompanied by a parent or guardian (2005-)\n"
+ "12 - Same as 12A for videos: suitable for persons 12 and older\n"
+ "12PG - Same as 12A (-2004)\n"
+ "15A - Children under 15 may attend only if accompanied by a parent or guardian (2005-)\n"
+ "15 - Same as 15A for videos: suitable for persons 15 and older\n"
+ "15PG - Same as 15A (-2004)\n"
+ "16 - Persons under 16 not admitted to cinemas (2005-)\n"
+ "18 - Persons under 18 not admitted to cinemas\n\n"
+ " Italy\n"
+ "T:IT @ - all audiences\n"
+ "6+ - 6 and older\n"
+ "VM14 - no one under the age of 14 admitted\n"
+ "VM16 - no one under the age of 16 admitted\n"
+ "VM18 - no one under the age of 18 admitted\n\n"
+ " Japan\n"
+ "G - Suitable for all\n"
+ "PG12 - Children under 12 may attend only if accompanied by a parent or guardian\n"
+ "R15+ - No one under the age of 15 admitted\n"
+ "R18+ - No one under the age of 18 admitted\n"
+ "A:JP @ - All ages (VG)\n"
+ "B:JP @ - No one under the age of 12 (VG)\n"
+ "C:JP @ - No one under the age of 15 (VG)\n"
+ "D:JP @ - No one under the age of 17 admitted (VG)\n"
+ "Z:JP @ - No one under the age of 18 admitted (VG)\n"
+ "Unrated - The title has been released but no certificate was delivered. Please note that \"Unrated\" is equivalent to \"NR\" or \"Not Rated\". \n\n"
+ " Malaysia\n"
+ "U - General Viewing for all ages.\n"
+ "18SG - For 18+ with non-excessive violent/horrifying scenes.\n"
+ "18SX - For 18+ with non-excessive sex scenes.\n"
+ "18PA - For 18+ with political/religious/counter-culture elements.\n"
+ "18PL - For 18+ with a combination of two or more elements.\n\n"
+ " Mexico\n"
+ "AA - Suitable for persons under 7 years old.\n"
+ "A:MX @ - Suitable for all.\n"
+ "B:MX @ - Passed only for persons 12 and over.\n"
+ "B15 - Passed only for persons 15 and over.\n"
+ "C:MX @ - Passed for persons 18 and over.\n"
+ "D:MX @ - Movies for adults.\n"
+ "S/C - Without classification.\n"
+ "0+ - Kids.\n"
+ "9+ - 9 and older.\n"
+ "12+ - 12 and older.\n"
+ "18+ - 18 and older.\n"
+ "TODO - Kids.\n"
+ "7 - 7 and older.\n"
+ "13 - 13 and older.\n"
+ "16 - 16 and older.\n"
+ "18 - 18 and older.\n\n"
+ " Netherlands\n"
+ "AL - Universal. suitable for all\n"
+ "6 - Not recommended for children below age 6\n"
+ "9 - Not recommended for children below age 9\n"
+ "12 - Not recommended for children below age 12\n"
+ "14 - Not recommended for children below age 14\n"
+ "16 - Not recommended for children below age 16\n"
+ "18 - Not recommended for children below age 18\n\n"
+ " Norway\n"
+ "7 - Passed only for persons 7 and over (4 with adult)\n"
+ "11 - Passed only for persons 11 and over (7 with adult)\n"
+ "15 - Passed only for persons 15 and over (12 with adult)\n"
+ "18 - Passed only for persons 18 and over\n\n"
+ " New Zealand\n"
+ "G - Universal. suitable for all\n"
+ "GY:NZ - More suitable for 13+\n"
+ "GA:NZ @ - More suitable for adults\n"
+ "RP13 - Entrance below 13 only with parent or guardian\n"
+ "RP16 - Entrance below 16 only with parent or guardian\n"
+ "RP18 - Entrance below 18 only with parent or guardian\n"
+ "R13 - Passed only for persons 13 and over\n"
+ "R16 - Passed only for persons 16 and over\n"
+ "R18 - Passed only for persons 18 and over\n\n"
+ " Philippines\n"
+ "G - General patronage\n"
+ "PG-13 - Parental guidance-13\n"
+ "R-13 - Restricted-13\n"
+ "R-18 - Restricted-18\n"
+ "X - Not for public viewing\n\n"
+ " Portugal\n"
+ "M/4 - Passed only for persons 4 and over\n"
+ "M/6 - Passed only for persons 6 and over\n"
+ "M/12 - Passed only for persons 12 and over\n"
+ "M/16 - Passed only for persons 16 and over\n"
+ "M/18 - Passed only for persons 18 and over\n\n"
+ " Romania\n"
+ "A.G. - General audiences (Audienta generala)\n"
+ "I.C.-14 - Passed only for persons 14 and over (Interzis copiilor sub 14 ani)\n"
+ "I.M.-18 - Passed only for persons 18 and over (Interzis minorilor sub 18 ani)\n"
+ "XXX - Pornographic movie, banned (Interzis proiectiei cu public)\n\n"
+ " Saudi Arabia\n"
+ "R18 - Under 18 not admitted\n"
+ "R15 - Under 15 not admitted\n"
+ "R12 - Under 12 not admitted\n"
+ "PG12 - Parental guidance, children under 12 must be accompanied by an adult\n"
+ "PG - Parental guidance suggested\n"
+ "G - For all audiences\n"
+ "Not Rated\n\n"
+ " Singapore\n"
+ "G - General\n"
+ "PG - Parental guidance\n"
+ "NC16 - No children below 16 years old\n"
+ "M18 - Mature 18 for persons 18 years and above [2004-]\n"
+ "R(A) - Restricted to adults [-2004]\n"
+ "R21 - Restricted to persons 21 years and above (theatrical only) [2004-]\n\n"
+ " South Korea\n"
+ "All - Suitable for all audiences ???\n"
+ "12 - Suitable for audiences 12 and over\n"
+ "15 - Suitable for audiences 15 and over\n"
+ "18 - Suitable for audiences 18 and over\n\n"
+ " Spain\n"
+ "Banned - Actively deemed unsuitable for local distribution\n"
+ "A:ES @ - Suitable for all viewers (\"apta\")\n"
+ "TP - Suitable for all viewers - TV ratings only (\"todos los públicos\")\n"
+ "A/fig:ES @ - Suitable for all viewers, recommended for the encouragement of gender equality\n"
+ "A/i:ES @ - Suitable for all viewers, classed especially suitable for children\n"
+ "A/i/fig:ES @ - Suitable for all viewers, classed especially suitable for children and recommended for the encouragement of gender equality\n"
+ "0+ - Suitable for all ages\n"
+ "3 - Video games only\n"
+ "4+ - Video games only\n"
+ "6+ - Some scenes may be unsuitable for children under 6\n"
+ "7 - Not recommended for viewers under 7\n"
+ "7/fig - Not recommended for viewers under 7 and recommended for the encouragement of gender equality\n"
+ "7/i - Not recommended for viewers under 7, classed especially suitable for children\n"
+ "7/i/fig - Not recommended for viewers under 7, classed especially suitable for children and recommended for the encouragement of gender equality\n"
+ "9+ - Some scenes may be unsuitable for children under 9\n"
+ "10 – Not recommended for viewers under 10\n"
+ "12 - Not recommended for viewers under 12\n"
+ "12/fig - Not recommended for viewers under 12 and recommended for the encouragement of gender equality\n"
+ "13 - Not recommended for viewers under 13\n"
+ "14 - Not recommended for viewers under 14\n"
+ "16 - Not recommended for viewers under 16\n"
+ "16/fig - Not recommended for viewers under 16 and recommended for the encouragement of gender equality\n"
+ "18 - Not recommended for viewers under 18\n"
+ "18/fig - Not recommended for viewers under 18 and recommended for the encouragement of gender equality\n"
+ "X – Extreme content, available for distribution to over 18s in designated venues only\n\n"
+ " Sweden\n"
+ "Btl - Universal. Suitable for all\n"
+ "7 - Entrance below 7 only with an adult.\n"
+ "11 - Passed only for persons 11 and over (7 with adult)\n"
+ "15 - Passed only for persons 15 and over\n\n"
+ " Switzerland\n"
+ "Btl - Universal. Suitable for all\n"
+ "7 - No one under the age of 7 admitted\n"
+ "12 - No one under the age of 12 admitted\n"
+ "16 - No one under the age of 16 admitted\n"
+ "18 - No one under the age of 18 admitted\n\n"
+ " UK (BBFC)\n"
+ "E - Exempt from classification\n"
+ "U - Universal, suitable for all\n"
+ "PG - Parental Guidance, some scenes may be unsuitable for kids\n"
+ "12A - Parental Advisory, children under 12 must be accompanied by an adult\n"
+ "15 - Passed only for persons 15 and over\n"
+ "18 - Passed only for persons 18 and over\n"
+ "R18 - Passed only for persons 18 and over, in specially licensed sex shops or cinemas\n\n"
+ " UK (Additional non-BBFC)\n"
+ "All:UK - Kids\n"
+ "G - Guidance\n"
+ "0+ - Suitable for all ages\n"
+ "6+ - Some scenes may be unsuitable for children under 6\n"
+ "7+ - Older kids (7+)\n"
+ "9+ - Some scenes may be unsuitable for children under 9\n"
+ "12+ - Some scenes may be unsuitable for children under 12\n"
+ "13+ - Teens (13+)\n"
+ "Teen - Teen\n"
+ "14+ - Some scenes may be unsuitable for children under 14\n"
+ "16\n"
+ "Mature - Adult\n"
+ "Adult - Adult\n\n"
+ " Ukraine\n"
+ "DA - Children audience\n"
+ "ZA - General audience\n"
+ "12 - Under 12 must be accompanied by an adult\n"
+ "16 - Under 16 not admitted\n"
+ "18 - Under 18 not admitted\n\n"
+ " USA\n"
+ "G - For all audiences\n"
+ "PG - Parental Guidance Suggested (mainly for under 10's)\n"
+ "PG-13 - Parental Guidance Suggested for children under 13\n"
+ "R - Under 17 not admitted without parent or guardian\n"
+ "NC-17 - Under 17 not admitted\n"
+ "Approved - Pre-1968 titles only (from the MPA site) Under the Hays Code, films were simply approved or disapproved based on whether they were deemed 'moral' or 'immoral'.)\n\n\n\n\n\n\n\n\n\n\n\n"
+ " WIKIPEDIA\n\n"
+ " Argentina\n"
+ "ATP - For all public.\n"
+ "+13 - Suitable for 13-year-olds and over. Children under the age of 13 are admitted if accompanied by an adult.\n"
+ "+16 - Suitable for 16-year-olds and over.\n"
+ "+18 - Suitable for 18-year-olds and over.\n"
+ "C:AR @ - Suitable for 18-year-olds and over. Restricted to specially licensed venues.\n\n"
+ " Australia\n"
+ "G (General) General. The content is very mild in impact. The G classification is suitable for everyone.\n"
+ "PG (Parental Guidance) Parental guidance recommended. The content is mild in impact. It is not recommended for viewing or playing by persons under 15 without guidance from parents or guardians.\n"
+ "M (Mature) Recommended for mature audiences. The content is moderate in impact. Children under 15 may legally access this material because it is an advisory category. However, M classified films and computer games may include classifiable elements such as violence and nudity of moderate impact that are not recommended for children under 15 years.\n"
+ " Restricted categories\n"
+ "MA 15+ (Mature Accompanied) Not suitable for people under 15. Under 15s must be accompanied by a parent or adult guardian. The content is strong in impact.\n"
+ "R 18+ (Restricted) Restricted to 18 years and over. The content is high in impact. Despite this category being legally restricted, in Queensland the restriction is not applicable to persons under 2.[4]\n"
+ " Adult film categories\n"
+ "X 18+ (Restricted) Restricted to 18 years and over. This classification is a special and legally restricted category which contains only sexually explicit content. That is, material which shows actual sexual intercourse and other sexual activity between consenting adults. X 18+ films are only available for sale or hire in the Australian Capital Territory and the Northern Territory.\n"
+ "RC (Refused Classification) Refused Classification. Banned from sale or hire in the country and cannot be legally imported.\n\n"
+ " Austria\n"
+ "Unrestricted – Released for all age groups.\n"
+ "6+ – Released for children from age 6.\n"
+ "10+ – Released for children from age 10.\n"
+ "12+ – Released for children from age 12.\n"
+ "14+ – Released from age 14.\n"
+ "16+ – Released from age 16. Restricted classification.\n\n"
+ " Bahamas\n"
+ "A:BS @ - Suitable for all ages.\n"
+ "B:BS @ - Suitable for adults; persons under the age of 18 must be accompanied by a parent or responsible adult.\n"
+ "T:BS @ - Suitable for persons above the age of 15\n"
+ "C:BS @ - Suitable for adults only, persons under 18 years are not admitted whether accompanied by an adult or not.\n"
+ "D:BS @ - Unsuitable for public viewing.\n\n"
+ " Barbados\n"
+ "GA – General Audience; Suitable for all ages.\n"
+ "PG – Parental Guidance.\n"
+ "PG13 – Parental Guidance 13; suitable for 13 years and older.\n"
+ "R – Suitable for 18 years and older.\n"
+ "A:BB @ – Adult Only; No-one under 18 admitted.\n\n"
+ " Belgium\n"
+ "AL/TOUS - All ages.\n"
+ "6 - From 6 years.\n"
+ "9 - From 9 years.\n"
+ "12 - From 12 years.\n"
+ "14 - From 14 years.\n"
+ "16 - From 16 years.\n"
+ "18 - From 18 years.\n\n"
+ " Brazil\n"
+ "ER - Especialmente recomendado para crianças (Especially recommended for children)\n"
+ "L - Livre (General)\n"
+ "10 - Não recomendado para menores de 10 anos (Not recommended for minors under 10)\n"
+ "12 - Não recomendado para menores de 12 anos (Not recommended for minors under 12)\n"
+ "14 - Não recomendado para menores de 14 anos (Not recommended for minors under 14)\n"
+ "16 - Não recomendado para menores de 16 anos (Not recommended for minors under 16)\n"
+ "18 - Não recomendado para menores de 18 anos (Not recommended for minors under 18)\n\n"
+ " Bulgaria\n"
+ "A:BG @ – Recommended for children.\n"
+ "B:BG @ – No age restrictions.\n"
+ "C:BG @ – Not recommended for children under 12. No persons under 12 shall be admitted unless accompanied by an adult.\n"
+ "D:BG @ – Prohibited for persons under 16.\n"
+ "X – Prohibited for persons under 18, for licensed venues only.\n\n"
+ " Canada\n"
+ "G – Suitable for viewing by all ages.\n"
+ "PG – Parental guidance advised.\n"
+ "14A – Suitable for people 14 years of age or older.\n"
+ "18A – Suitable for people 18 years of age or older.\n"
+ "R – Restricted to 18 years and over. No rental or purchase by those under 18. Content not suitable for minors.\n"
+ "A:CA @ – Adult. Film is not suitable for viewers under 18 years of age.\n"
+ "E – Exempt.\n\n"
+ " The rating labels used in Quebec.\n"
+ "G - Visa général (General Rating)\n"
+ "13+ - 13 ans et plus (13 years and over)\n"
+ "16+ - 16 ans et plus (16 years and over)\n"
+ "18+ - 18 ans et plus (18 years and over)\n\n"
+ " Chile\n"
+ "TE (Todo Espectador) – General audience.\n"
+ "TE+7 (Inconveniente para menores de 7 años) – Not suitable for children younger than 7 years.\n"
+ "Mayores de 14 años – Over 14 years old.\n"
+ "Mayores de 18 años – Over 18 years old.\n\n"
+ " Colombia\n"
+ "T:CO @ - For general audiences.\n"
+ "7 - Advisory.\n"
+ "12 - Advisory.\n"
+ "15 - Restricted.\n"
+ "18 - Restricted.\n"
+ "X - Pornographic content.\n"
+ "Prohibited - Contains elements that incite or advocate crime.\n\n"
+ " Cook Islands\n"
+ "G (general)\n"
+ "PG (parental guidance)\n"
+ "MA (mature audiences)\n"
+ "R18 (restricted to adults)\n\n"
+ " Denmark\n"
+ "A:DK @ – Suitable for a general audience.\n"
+ "7 – Not recommended for children under 7.\n"
+ "11 – For ages 11 and up.\n"
+ "15 – For ages 15 and up.\n"
+ "F – Exempt from classification.\n\n"
+ " Estonia\n"
+ "PERE – Family Film.\n"
+ "L – Allowed to all.\n"
+ "MS-6 – Not recommended for under 6.\n"
+ "MS-12 – Not recommended for under 12.\n"
+ "K-12 – Prohibited for under 12 unless accompanied by an adult.\n"
+ "K-14 – Prohibited for under 14 unless accompanied by an adult.\n"
+ "K-16 – Prohibited for under 16 unless accompanied by an adult.\n\n"
+ " Fiji\n"
+ "G - approved for general exhibition\n"
+ "Y:FJ @ - approved for exhibition to viewers over the age of 13\n"
+ "A:FJ @ - approved for exhibition to adults only (over 18)\n"
+ "R - approved for restricted public exhibition subject to conditions imposed by the censor\n\n"
+ " Finland\n"
+ "S (Finnish) – For all ages.\n"
+ "T:FI @ (Swedish) – For all ages.\n"
+ "7 – Over 7 years.\n"
+ "12 – Over 12 years.\n"
+ "16 – Over 16 years.\n"
+ "18 – Prohibited for children under 18 years of age.\n\n"
+ " France\n"
+ "TP (Tous publics) – Certificate authorising the screening of the film to all members of the public.\n"
+ "-12 – Certificate prohibiting the screening of the film to minors under 12.\n"
+ "-16 – Certificate prohibiting the screening of the film to minors under 16.\n"
+ "-18 – Certificate prohibiting the screening of the film to minors under 18.\n\n"
+ " Germany\n"
+ "FSK 0: Ohne Altersbeschränkung (FSK 0): no age restriction (white sign).\n"
+ "FSK 6: Freigegeben ab 6 Jahren (FSK 6): released to ages 6 and older, nobody under this age admitted (yellow sign).\n"
+ "FSK 12: Freigegeben ab 12 Jahren (FSK 12): released to ages 12 and older; children who are at least age 6 may be admitted with adult accompaniment (green sign).\n"
+ "FSK 16: Freigegeben ab 16 Jahren (FSK 16): released to ages 16 and older, nobody under this age admitted (blue sign).\n"
+ "FSK 18: Keine Jugendfreigabe (FSK 18): \"no youth admitted\", adults only. (red sign).\n\n"
+ " Greece\n"
+ "Unrestricted – No restrictions (The film does not contain violence, drug abuse, or sexual content).\n"
+ "13 – The film may contain mild violence and adult themes. Suitable for people aged 13 and above.\n"
+ "17 – The film may contain violence, drug abuse, and softcore pornographic scenes.\n"
+ "18 – Not permitted to people under the age of 18.\n\n"
+ " Hong Kong\n"
+ "I – Suitable for all ages. (circle sign).\n"
+ "IIA – Not suitable for children. (square sign).\n"
+ "IIB – Not suitable for young persons and children.\n"
+ "III – Persons aged 18 or above only. (triangle sign).\n\n"
+ " Hungary\n"
+ "KN (korhatár nélkül) – All audiences.\n"
+ "6 – Not recommended below age of 6.\n"
+ "12 – Not recommended below age of 12.\n"
+ "16 – Not recommended below age of 16.\n"
+ "18 – Not recommended below age of 18.\n"
+ "X – Restricted below 18, for adults only. Excessively violent scenes.\n\n"
+ " Iceland\n"
+ "L - All ages.\n"
+ "6 - Not suitable for children under 6 years.\n"
+ "9 - Not suitable for children under 9 years.\n"
+ "12 - Not suitable for children under 12 years.\n"
+ "14 - Not suitable for children under 14 years.\n"
+ "16 - Not suitable for children under 16 years.\n"
+ "18 - Not suitable for children under 18 years.\n\n"
+ " India\n"
+ "U – Unrestricted public exhibition.\n"
+ "U/A – Unrestricted public exhibition, but with parental guidance for children below the age of 12 years.\n"
+ "A:IN @ – Restricted to adults.\n"
+ "S – Restricted to any special class of persons.\n\n"
+ " Indonesia\n"
+ "SU (Semua Umur): All ages.\n"
+ "13+ - Suitable for ages 13 and above.\n"
+ "17+ - Suitable for ages 17 and above.\n"
+ "21+ - Suitable for ages 21 and above.\n\n"
+ " Iraq\n"
+ "G - General Exhibition - open for all ages.\n"
+ "PG 13: Customer may be aged 13 years and under, but must be accompanied by someone 13 years old or older.\n"
+ "PG 15: Customer may be aged 15 years and under, but must be accompanied by someone 15 years old or older.\n"
+ "15+ - No persons under 15 years of age will be admitted. Babies not allowed.\n"
+ "18+ - No persons under 18 years of age will be admitted. Babies not allowed.\n"
+ "18TC - Rated 18+ until confirmed by the National Media Council.\n\n"
+ " Ireland\n"
+ "G (General) – Suitable for children of school going age (note: children can be enrolled in school from the age of 4).\n"
+ "PG (Parental Guidance) – Suitable for children over the age of 8. Parental guidance is recommended for children under the age of 12.\n"
+ "12A, 12 – Suitable for viewers of 12 and over. Younger children may be admitted to the film at cinemas if accompanied by an adult; on home video younger viewers are not permitted to purchase/rent the video.\n"
+ "15A, 15 – Suitable for viewers of 15 and over. Younger viewers may be admitted to the film at cinemas if accompanied by an adult; on home video younger viewers are not permitted to purchase/rent the video.\n"
+ "16 (cinema only) – Suitable for viewers of 16 and over. Younger viewers are not admitted.\n"
+ "18 – Suitable only for adults. Viewers under 18 are not admitted at cinemas or permitted to purchase/rent the video.\n\n"
+ " Italy\n"
+ "T:IT @ (film per tutti): no age restriction.\n"
+ "6+ (sconsigliato ai minori di anni 6): not suitable for children under 6.\n"
+ "14+ (vietato ai minori di 14 anni): released to ages 14 and older; children who are at least 12 may be admitted with adult accompaniment.\n"
+ "18+ (vietato ai minori di 18 anni): released to ages 18 and older; children who are at least 16 may be admitted with adult accompaniment.\n\n"
+ " Jamaica\n"
+ "G (General Audiences): Appropriate for all ages.\n"
+ "PG (only applied occasionally).\n"
+ "PG-13 - Children 12 years and under must be accompanied by parent/guardian.\n"
+ "T-16 - Teenagers 14 & 15 will be admitted in the company of an adult.\n"
+ "A-18 - No one under the age of 18 years will be admitted.\n\n"
+ " Japan\n"
+ "G - General, suitable for all ages.\n"
+ "PG12 - Parental guidance requested for young people under 12 years.\n"
+ "R15+ - No one under 15 admitted.\n"
+ "R18+ - No one under 18 admitted.\n\n"
+ " Kazakhstan\n"
+ "К - Film is allowed for any audience.\n"
+ "БА - Permitted for children over the age of 12 only.\n"
+ "Б14 - Supervision by parents required for children the age of 12–13.\n"
+ "Е16 - Supervision by parents required for children the age of 12–15.\n"
+ "Е18 - For viewers aged over 18.\n"
+ "НА - For viewers aged over 21. Restricted to licensed venues between 10 pm and 6 am local time.\n\n"
+ " Kenya\n"
+ "GE (General Exhibition) – Suitable for all ages.\n"
+ "PG (Parental Guidance Recommended) – May contain scenes unsuitable for children under the age of 10.\n"
+ "16 (Unsuitable for persons under age of 16) – Restricted to persons aged 16 years and above.\n"
+ "18 (Adults Only) – Restricted to persons aged 18 years and above.\n"
+ "Restricted/Banned\n\n"
+ " Kuwait\n"
+ "E – Film content is suitable for everyone.\n"
+ "PG – Under 13 requires accompanying parent or adult guardian.\n"
+ "T:KW @ – Under 13 are not permitted.\n"
+ "18+ – Under 18 are not permitted.\n\n"
+ " Latvia\n"
+ "U (universal audience) – Suitable for persons of all age groups.\n"
+ "7+ - Suitable for a person who has reached at least 7 years of age.\n"
+ "12+ - Suitable for a person who has reached at least 12 years of age.\n"
+ "16+ - Suitable for a person who has reached at least 16 years of age.\n"
+ "18+ - Not suitable for a minor (prohibited to people under 18).\n\n"
+ " Lebanon\n"
+ "G - Intended for General Audiences. All ages are admitted.\n"
+ "PG - Parental Guidance is suggested.\n"
+ "PG13 - Children under 13 years of age will not be admitted.\n"
+ "PG16 - Persons under 16 years of age will not be admitted.\n"
+ "18+ - Persons under 18 years of age will not be admitted.\n\n"
+ " Lithuania\n"
+ "V - Released for all ages. The full name for the classification is visi, which means \"all\"\n"
+ "N-7 - Released from age 7 and above. Children aged under 7 may be admitted with adult supervision.\n"
+ "N-13 - Released from age 13 and above. Children aged between 7 and 12 may be admitted with adult supervision.\n"
+ "N-16 - Released from age 16 and above. No one under 16 is admitted.\n"
+ "N-18 - Released from age 18 and above. No one under 18 is admitted.\n\n"
+ " Malaysia\n"
+ "U (Umum) - No age limit.\n"
+ "P13 (Penjaga) – Parental guidance required for audiences under the age of 13.\n"
+ "18 – For audiences aged 18 years old and above.\n\n"
+ " Maldives\n"
+ "G – Suitable for all ages.\n"
+ "PG – Parental guidance.\n"
+ "12+ – For ages 12 and above.\n"
+ "15+ – Suitable for ages 15 and above.\n"
+ "18+ – Suitable for ages 18 and above.\n"
+ "18+R – Suitable for ages 18 and above. Restricted.\n"
+ "PU – For professional use only.\n\n"
+ " Malta\n"
+ "U (Universal) – Suitable for all.\n"
+ "PG (Parental Guidance) – General viewing, but some scenes may be unsuitable for young children.\n"
+ "12A – Suitable for persons of 12 years and over: Provided that persons younger than 12 years may attend only when accompanied by an adult.\n"
+ "12 – Suitable only for persons of 12 years and over.\n"
+ "15 – Suitable for persons of 15 years and over.\n"
+ "18 – Suitable only for persons of 18 years and over.\n\n"
+ " Mauritius\n"
+ "U (Universal) – Suitable for all audiences.\n"
+ "PG – Parental Guidance is compulsory for children under the age of 12.\n"
+ "15 – Suitable for persons of the age of 15 and above.\n"
+ "18 – Suitable for all Adults.\n"
+ "18R – Adult audiences only (subject to specified conditions)\n"
+ "Rejected – Not allowed.\n\n"
+ " Mexico\n"
+ "AA Informative-only rating: Understandable for children under 7 years.\n"
+ "A:MX @ Information-only rating: For all age groups.\n"
+ "B:MX @ Information-only rating: For adolescents 12 years and older.\n"
+ "B-15 Information-only rating: Not recommended for children under 15.\n"
+ "C:MX @ Restrictive rating: For adults 18 and older.\n"
+ "D:MX @ Restrictive rating: Adult movies (legally prohibited to those under 18 years of age).\n\n"
+ " Netherlands\n"
+ "AL - All ages.\n"
+ "6 - Potentially harmful to children under 6 years.\n"
+ "9 - Potentially harmful to children under 9 years.\n"
+ "12 - Potentially harmful to children under 12 years; broadcasting is not allowed before 8:00 pm.\n"
+ "14 - Potentially harmful to children under 14 years; broadcasting is not allowed before 8:00 pm.\n"
+ "16 - Potentially harmful to (and not allowed for) children under 16 years; broadcasting is not allowed before 8:00 pm.\n"
+ "18 - Potentially harmful to (and not allowed for) children under 18 years; broadcasting is not allowed before midnight.\n\n"
+ " New Zealand\n"
+ "G - Anyone can be shown or sold this.\n"
+ "PG - Films and games with a PG label can be sold, hired, or shown to anyone. The PG label means guidance from a parent or guardian is recommended for younger viewers.\n"
+ "M - Films and games with an M label can be sold, hired, or shown to anyone. Films with an M label are more suitable for mature audiences 16 years and over.[108][109]\n"
+ "RP13 - Restricted to persons 13 years and over unless accompanied by a Parent/Guardian.\n"
+ "RP16 - Restricted to persons 16 years and over unless accompanied by a Parent/Guardian.\n"
+ "RP18 - Restricted to persons 18 years and over unless accompanied by a Parent/Guardian (online content only).\n"
+ "R13 - Restricted to persons 13 years and over.\n"
+ "R15 - Restricted to persons 15 years and over.\n"
+ "R16 - Restricted to persons 16 years and over.\n"
+ "R18 - Restricted to persons 18 years and over.\n"
+ "R - Restricted exclusively to a certain audience.\n\n"
+ " Nigeria\n"
+ "G - Suitable for viewing by persons of all ages.\n"
+ "PG - Parental Guidance advised.\n"
+ "12 - Not suitable for people under the age of 12.\n"
+ "12A - Not suitable for people under the age of 12. A child must be accompanied by an adult to view the film.\n"
+ "15 - Not suitable for persons under the age of 15.\n"
+ "18 - Not suitable for people under the age of 18.\n"
+ "RE - Films which fall under this category are to be exhibited and distributed only in specially licensed premises.\n\n"
+ " Norway\n"
+ "A:NO @ – Suitable for all.\n"
+ "6 – 6 years (no restriction for children accompanied by an adult).\n"
+ "9 – 9 years (children down to 6 years accompanied by an adult).\n"
+ "12 – 12 years (children down to 9 years accompanied by an adult).\n"
+ "15 – 15 years (young down to 12 years accompanied by an adult).\n"
+ "18 – 18 years (absolute lower limit).\n\n"
+ " Philippines\n"
+ "G (General Audiences) – Viewers of all ages are admitted.\n"
+ "PG (Parental Guidance) – Viewers below 13 years old must be accompanied by a parent or supervising adult.\n"
+ "R-13 (Restricted-13) – Only viewers who are 13 years old and above can be admitted.\n"
+ "R-16 (Restricted-16) – Only viewers who are 16 years old and above can be admitted.\n"
+ "R-18 (Restricted-18) – Only viewers who are 18 years old and above can be admitted.\n"
+ "X (Not For Public Exhibition) – \"X-rated\" films are not suitable for public exhibition.\n\n"
+ " Portugal\n"
+ "M/3 Passed for viewers aged 3 and older.\n"
+ "M/6 Passed for viewers aged 6 and older.\n"
+ "M/12 Passed for viewers aged 12 and older.\n"
+ "M/14 Passed for viewers aged 14 and older.\n"
+ "M/16 Passed for viewers aged 16 and older.\n"
+ "M/18 Passed for viewers aged 18 and older.\n"
+ "P – Special rating supplementary to the M/18 age rating denoting \"pornography\".\n\n"
+ " Romania\n"
+ "AG (audiență generală) – General audience.\n"
+ "AP-12 (acordul părinților pentru copiii sub 12 ani) – Parental guidance for children under 12.\n"
+ "N-15 (nerecomandat tinerilor sub 15 ani) – Not recommended for children under 15.\n"
+ "IM-18 (interzis minorilor) – Prohibited to minors under 18.\n"
+ "IM-18-XXX (interzis minorilor și proiecției cu public) – Prohibited to minors under 18 and projection with a public.\n"
+ "IC (interdicție de comunicare) – Prohibition of communication.\n\n"
+ " Russia\n"
+ "0+ – All ages are admitted.\n"
+ "6+ для детей старше 6 лет (For children over 6 years) – Unsuitable for children under 6.\n"
+ "12+ для детей старше 12 лет (For children over 12 years) – Unsuitable for children under 12.\n"
+ "16+ для детей старше 16 лет (For children over 16 years) – Unsuitable for children under 16.\n"
+ "18+ запрещено для детей (Prohibited for children) – Prohibited for children under 18.\n\n"
+ " Saudi Arabia\n"
+ "G - General – For the general public.\n"
+ "PG - Parental Guidance – Adult supervision recommended for children under the age of 12.\n"
+ "PG12 - Parental Guidance 12 – Adult supervision required for children under the age of 12.\n"
+ "R12 - Audiences under the age of 12 are prohibited.\n"
+ "R15 - Audiences under the age of 15 are prohibited.\n"
+ "R18 - Audiences under the age of 18 are prohibited.\n\n"
+ " Singapore\n"
+ "G - General – Suitable for all ages.\n"
+ "PG - Parental Guidance – Suitable for all but parents should guide their young.\n"
+ "PG13 - Parental Guidance 13 – Suitable for persons aged 13 and above but parental guidance is advised for children below 13.\n"
+ "NC16 - No Children Under 16 – Suitable for persons aged 16 and above.\n"
+ "M18 - Mature 18 – Suitable for persons aged 18 and above.\n"
+ "R21 - Restricted 21 – Suitable for adults aged 21 and above (restricted to licensed cinemas).\n\n"
+ " Slovakia\n"
+ "U – General audience (Parental advisory recommended for children younger than 7 years).\n"
+ "7 – Not recommended for children younger than 7 years.\n"
+ "12 – Not recommended for people younger than 12 years.\n"
+ "15 – Not recommended for people younger than 15 years.\n"
+ "18 – Prohibited for minors under 18 years of age.\n"
+ " In addition, educational movie ratings are:\n"
+ "-7 – Targeted at children younger than 7 years. !!!\n"
+ "7+ – Appropriate for children older than 7 years. !!!\n"
+ "12+ – Appropriate for people 12 years and over.\n"
+ "15+ – Appropriate for people 15 years and over.\n\n"
+ " South Africa\n"
+ "A:ZA @ - Suitable for all.\n"
+ "PG - Parental Guidance\n"
+ "7–9PG - Not suitable for children under the age of 7. Children aged 7–9 years old may not be admitted unless accompanied by an adult.\n"
+ "10–12PG - Not suitable for children under the age of 10. Children aged 10–12 years old may not be admitted unless accompanied by an adult.\n"
+ "13 - Not suitable for children under the age of 13.\n"
+ "16 - Not suitable for persons under the age of 16.\n"
+ "18 - Not suitable for persons under the age of 18.\n"
+ "X18 - No one under 18 admitted; restricted to licensed adult premises.\n"
+ "XX - Must not be distributed or exhibited in public.\n\n"
+ " South Korea\n"
+ "All – Film suitable for all ages.\n"
+ "12 – Film intended for audiences 12 and over. Underage audiences accompanied by a parent or guardian are allowed.\n"
+ "15 – Film intended for audiences 15 and over. Underage audiences accompanied by a parent or guardian are allowed.\n"
+ "18 – No one under 18 is allowed to watch this film.\n\n"
+ " Spain\n"
+ "APTA for children\n"
+ "A(i) – General admission.\n"
+ "7(i) – Not recommended for audiences under 7.\n"
+ "12 – Not recommended for audiences under 12.\n"
+ "16 – Not recommended for audiences under 16.\n"
+ "18 – Not recommended for audiences under 18.\n"
+ "X – Prohibited for audiences under 18 (may only be shown in premises where adult films are screened).\n\n"
+ " Sweden\n"
+ "Btl (Barntillåten) – All ages.\n"
+ "7 – Children under the age of 7, who are accompanied by an adult, are admitted to films that have been passed for children from the age of 7.\n"
+ "11 – Children over the age of 7, who are accompanied by an adult, are admitted to films that have been passed for children from the age of 11.\n"
+ "15 – Children over the age of 11, who are accompanied by an adult, are admitted to films with a 15-year limit.\n\n"
+ " Taiwan\n"
+ "0+ - (General Audience) – Viewing is permitted for audiences of all ages.\n"
+ "6+ - (Protected) – Viewing is not permitted for children under 6; children between 6 and 11 shall be accompanied and given guidance by parents, teachers, seniors, or adult relatives or friends.\n"
+ "12+ - (Parental Guidance 12) – Viewing is not permitted for children under 12.\n"
+ "15+ - (Parental Guidance 15) – Viewing is not permitted for those under 15.\n"
+ "18+ - (Restricted) – Viewing is not permitted for those under 18.\n\n"
+ " Thailand\n"
+ "P:TH @ – Educational.\n"
+ "G – General audience.\n"
+ "13 – Suitable for viewers aged 13 years and over.\n"
+ "15 – Suitable for viewers aged 15 years and over.\n"
+ "18 – Suitable for viewers aged 18 years and over.\n"
+ "20 – Content is unsuitable for viewers aged under 20.\n"
+ "Banned – Films that are not allowed to screen publicly in Thailand.\n\n"
+ " Turkey\n"
+ "6A – Viewers under the age of 6 may watch with accompanying family members.\n"
+ "6+ – Suitable for viewers aged 6 and over.\n"
+ "10A – Viewers under the age of 10 may watch with accompanying family members.\n"
+ "10+ – Suitable for viewers aged 10 and over.\n"
+ "13A – Viewers under the age of 13 may watch with accompanying family members.\n"
+ "13+ – Suitable for viewers aged 13 and over.\n"
+ "16+ – Suitable for viewers aged 16 and over.\n"
+ "18+ – Suitable for viewers aged 18 and over.\n\n"
+ " Ukraine\n"
+ "DA - ДА (Дитяча аудиторія): Film aimed for children. They contain no violence or obscenity.\n"
+ "ZA - ЗА (Загальна аудиторія): Suitable for all.\n"
+ "12 - Suitable for children aged 12 and older; those under 12 may be admitted if accompanied by an adult as parents may find upsetting to them.\n"
+ "16 - Not allowed for viewing by persons under 16 years of age.\n"
+ "18 - Not allowed for viewing by persons under 18 years of age.\n"
+ "Denied - Відмовлено: Refused a classification by the Derzhkino. Content may not be shown, advertised, or distributed anywhere in Ukraine.\n\n"
+ " The NMC film and video rating system which took effect on 19 February 2018\n"
+ "G – For public viewing, suitable for all age groups.\n"
+ "PG – For public viewing, with adult supervision.\n"
+ "PG13 – Persons below 13 allowed with adult supervisions.\n"
+ "PG15 – Persons below 15 allowed with adult supervisions.\n"
+ "15+ – Ages 15 and above only.\n"
+ "18+ – Ages 18 and above only.\n"
+ "21+ – Uncensored films for ages 21 and above only.[154][155]\n\n"
+ " United Kingdom\n"
+ "U (Universal – Suitable for all) – A U-rated film should be suitable for audiences aged four years and over.\n"
+ "PG (Parental Guidance) – General viewing, but some scenes may be unsuitable for young children. A PG-rated film should not unsettle a child aged around eight or older.\n"
+ "12A / 12 (Suitable for 12 years and over) – Films classified 12A and video works classified 12 contain material that is not generally suitable for children aged under 12.\n"
+ "15 (Suitable only for 15 years and older) – No-one under 15 is allowed to see a 15-rated film at the cinema or buy/rent a 15-rated video.\n"
+ "18 (Suitable only for adults) – No-one under 18 is allowed to see an 18-rated film at the cinema or buy/rent an 18-rated video.\n"
+ "R18 (To be shown only in specially licensed cinemas, or supplied only in licensed sex shops, and to adults only)\n\n"
+ " United States\n"
+ "G (General Audiences) – All ages admitted.\n"
+ "PG (Parental Guidance Suggested) – Some material may not be suitable for children.\n"
+ "PG-13 (Parents Strongly Cautioned) – Some material may be inappropriate for children under 13.\n"
+ "R (Restricted) – Under 17 requires accompanying parent or adult guardian.\n"
+ "NC-17 (Adults Only) – No one 17 and under admitted.\n\n"
+ " Venezuela\n"
+ "AA – Aimed at children under 12 years of age.\n"
+ "A:VE @ – Suitable for all ages.\n"
+ "B:VE @ – Suitable for audiences aged 12 years or older.\n"
+ "C:VE @ – Suitable for audiences aged 16 years or older.\n"
+ "D:VE @ – Suitable for audiences aged 18 years or older.\n"
+ "A:VE @ – Suitable for all ages.\n"
+ "B:VE @ – Suitable for audiences aged 12 years or older.\n"
+ "C:VE @ – Suitable for audiences aged 16 years or older.\n"
+ "D:VE @ – Suitable for adults.\n"
+ "A:VE @ – Suitable for all ages.\n"
+ "B:VE @ – Suitable for audiences aged 14 years or older.\n"
+ "C:VE @ – Suitable for audiences aged 18 years or older.\n\n"
+ " Vietnam\n"
+ "P:VN @ (Vietnamese: Phổ cập, meaning Universal) – Suitable for all ages.\n"
+ "C13 – Persons under age 13 not admitted.\n"
+ "C16 – Persons under age 16 not admitted.\n"
+ "C18 – Persons under age 18 not admitted.\n";
final Pattern pattern = Pattern.compile(regex, Pattern.CASE_INSENSITIVE | Pattern.MULTILINE | Pattern.COMMENTS);
final Matcher matcher = pattern.matcher(string);
while (matcher.find()) {
System.out.println("Full match: " + matcher.group(0));
for (int i = 1; i <= matcher.groupCount(); i++) {
System.out.println("Group " + i + ": " + matcher.group(i));
}
}
}
}
Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for Java, please visit: https://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html