503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
|
__[s>(p_MM_point)__
MM[.] <<- ~>> "MM "
__[s>(p_Mr_Mgr_Mme_point)__
M(?:r|gr|me) [A-ZÉ]([.])(?=\W+[a-zéèêâîïû]) @@$ <<- ~1>> *
# Patronyme réduit à une seule lettre
__[s](p_prénom_lettre_point_patronyme)__
([A-ZÉÈÂÎ][\w-]+)[ ][A-ZÉÈÂ]([.])[ ]([A-ZÉÈÂ][\w-]+) @@0,$,$
<<- morph(\1, ":M[12]") and (morph(\3, ":(?:M[12]|V)") or not spell(\3)) ~2>> *
__[s>(p_prénom_lettre_point)__
([A-ZÉÈÂÎ][\w-]+)[ ][A-ZÉÈÂ]([.]) @@0,$
<<- morph(\1, ":M[12]") and after("^\\W+[a-zéèêîïâ]") ~2>> _
# Patronymes composés avec Le/La/Les
__[s](p_patronyme_composé_avec_le_la_les)__
|
|
|
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
|
__[s>(p_MM_point)__
MM[.] <<- ~>> "MM "
__[s>(p_Mr_Mgr_Mme_point)__
M(?:r|gr|me) [A-ZÉ]([.])(?=\W+[a-zéèêâîïû]) @@$ <<- ~1>> *
# Patronyme réduit à une seule lettre
__[s](p_prénom_lettre_point_patronyme)__
([A-ZÉÈÂÎ][\w-]+)[ ][A-ZÉÈÂ]([.])[ ]([A-ZÉÈÂ][\w-]+) @@0,*,$
<<- morph(\1, ":M[12]") and (morph(\3, ":(?:M[12]|V)") or not spell(\3)) ~2>> *
__[s>(p_prénom_lettre_point)__
([A-ZÉÈÂÎ][\w-]+)[ ][A-ZÉÈÂ]([.]) @@0,$
<<- morph(\1, ":M[12]") and after("^\\W+[a-zéèêîïâ]") ~2>> _
# Patronymes composés avec Le/La/Les
__[s](p_patronyme_composé_avec_le_la_les)__
|
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
|
!!
!!!! Ponctuation de fin de paragraphe !!
!!
!!
__[i>/poncfin(poncfin_règle1)__
({w_1}) *$ @@0
<<- before("\\w+(?:[.]|[ ][!?]) +(?:[A-ZÉÈÎ]\\w+|[ÀÔ])") -1>> \1.|\1 !|\1 ? # Il semble manquer une ponctuation finale (s’il s’agit d’un titre, le point final n’est pas requis).
TEST: __poncfin__ Vraiment. Quel {{ennui}}
TEST: Internet : le nouvel eldorado
TEST: OMC-FMI : Les nouveaux maîtres du monde
!!
|
|
|
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
|
!!
!!!! Ponctuation de fin de paragraphe !!
!!
!!
__[i>/poncfin(poncfin_règle1)__
({w_1}) *$ @@0
<<- before("\\w+(?:\\.|[ ][!?]) +(?:[A-ZÉÈÎ]\\w+|[ÀÔ])") -1>> \1.|\1 !|\1 ? # Il semble manquer une ponctuation finale (s’il s’agit d’un titre, le point final n’est pas requis).
TEST: __poncfin__ Vraiment. Quel {{ennui}}
TEST: Internet : le nouvel eldorado
TEST: OMC-FMI : Les nouveaux maîtres du monde
!!
|