Accueil > > > DICTIONNAIRE DE SCRABBLE
DICTIONNAIRE DE SCRABBLE
Information sur la source
Description
Dictionnaire de scrabble en application dans un fichier .jar ou dans une applet............................................ ......................
Source
- <html><head><title>Dictionnaire du Scrabble</title></head><body>
- <h2>Entrer un mot d'au moins deux lettres :
- <applet code="dico.class" archive="dico.jar" width="262" height="36"><param name="win" value="oui" /></applet> puis appuyer sur "Entrée"</h2><br>
- <pre>
- . Ce caractère remplace une seule lettre (équivalent à [A-Z])
- ? Ce caractère remplace zéro ou une lettre (équivalent à [A-Z]?)
- * Ce caractère remplace zéro ou plusieurs lettres (équivalent à [A-Z]*)
- + Ce caractère remplace une ou plusieurs lettres (équivalent à [A-Z]+)
-
- Ce dictionnaire est de la forme " "+mot+" "+mot+...+mot+" "
- (Un espace avant et après est placé dans le pattern automatiquement)
- Par exemple, le pattern ".." est remplacé par " [A-Z][A-Z] "
- le pattern "+*?" est remplacé par " [A-Z]+[A-Z]*[A-Z]? "
-
- \0n Le character with octal value 0n (0 <= n <= 7)
- \0nn The character with octal value 0nn (0 <= n <= 7)
- \0mnn The character with octal value 0mnn (0 <= m <= 3, 0 <= n <= 7)
- \xhh The character with hexadecimal value 0xhh
- \uhhhh The character with hexadecimal value 0xhhhh
- \cx The control character corresponding to x
-
- Character classes
- [abc] a, b, or c (simple class)
- [^abc] Any character except a, b, or c (negation)
- [a-zA-Z] a through z or A through Z, inclusive (range)
- [a-d[m-p]] a through d, or m through p: [a-dm-p] (union)
- [a-z&&[def]] d, e, or f (intersection)
- [a-z&&[^bc]] a through z, except for b and c: [ad-z] (subtraction)
- [a-z&&[^m-p]] a through z, and not m through p: [a-lq-z](subtraction)
-
- Predefined character classes
- . Any character (may or may not match line terminators)
- \S A non-whitespace character: [^\s]
- \w A word character: [a-zA-Z_0-9]
- \W A non-word character: [^\w]
-
- Boundary matchers
- ^ The beginning of a line
- $ The end of a line
- \b A word boundary
- \B A non-word boundary
- \A The beginning of the input
- \G The end of the previous match
- \Z The end of the input but for the final terminator, if any
- \z The end of the input
-
- Greedy quantifiers
- X? X, once or not at all
- X* X, zero or more times
- X+ X, one or more times
- X{n} X, exactly n times
- X{n,} X, at least n times
- X{n,m} X, at least n but not more than m times
-
- Reluctant quantifiers
- X?? X, once or not at all
- X*? X, zero or more times
- X+? X, one or more times
- X{n}? X, exactly n times
- X{n,}? X, at least n times
- X{n,m}? X, at least n but not more than m times
-
- Possessive quantifiers
- X?+ X, once or not at all
- X*+ X, zero or more times
- X++ X, one or more times
- X{n}+ X, exactly n times
- X{n,}+ X, at least n times
- X{n,m}+ X, at least n but not more than m times
-
- Logical operators
- XY X followed by Y
- X|Y Either X or Y
- (X) X, as a capturing group
-
- Back references
- \n Whatever the nth capturing group matched
-
- Quotation
- \ Nothing, but quotes the following character
- \Q Nothing, but quotes all characters until \E
- \E Nothing, but ends quoting started by \Q
-
- Special constructs (non-capturing)
- (?:X) X, as a non-capturing group
- (?idmsux-idmsux) Nothing, but turns match flags on - off
- (?idmsux-idmsux:X) X, as a non-capturing group with the given flags on - off
- (?=X) X, via zero-width positive lookahead
- (?!X) X, via zero-width negative lookahead
- (?<=X) X, via zero-width positive lookbehind
- (?<!X) X, via zero-width negative lookbehind
- (?>X) X, as an independent, non-capturing group
-
- 1 Literal escape \x
- 2 Grouping [...]
- 3 Range a-z
- 4 Union [a-e][i-u]
- 5 Intersection [a-z&&[aeiou]]
-
- A newline (line feed) character ('\n'),
- A carriage-return character followed immediately by a newline character ("\r\n"),
- A standalone carriage-return character ('\r'),
- A next-line character ('\u0085'),
- A line-separator character ('\u2028'), or
- A paragraph-separator character ('\u2029)
- </pre>
- </body></html>
<html><head><title>Dictionnaire du Scrabble</title></head><body>
<h2>Entrer un mot d'au moins deux lettres :
<applet code="dico.class" archive="dico.jar" width="262" height="36"><param name="win" value="oui" /></applet> puis appuyer sur "Entrée"</h2><br>
<pre>
. Ce caractère remplace une seule lettre (équivalent à [A-Z])
? Ce caractère remplace zéro ou une lettre (équivalent à [A-Z]?)
* Ce caractère remplace zéro ou plusieurs lettres (équivalent à [A-Z]*)
+ Ce caractère remplace une ou plusieurs lettres (équivalent à [A-Z]+)
Ce dictionnaire est de la forme " "+mot+" "+mot+...+mot+" "
(Un espace avant et après est placé dans le pattern automatiquement)
Par exemple, le pattern ".." est remplacé par " [A-Z][A-Z] "
le pattern "+*?" est remplacé par " [A-Z]+[A-Z]*[A-Z]? "
\0n Le character with octal value 0n (0 <= n <= 7)
\0nn The character with octal value 0nn (0 <= n <= 7)
\0mnn The character with octal value 0mnn (0 <= m <= 3, 0 <= n <= 7)
\xhh The character with hexadecimal value 0xhh
\uhhhh The character with hexadecimal value 0xhhhh
\cx The control character corresponding to x
Character classes
[abc] a, b, or c (simple class)
[^abc] Any character except a, b, or c (negation)
[a-zA-Z] a through z or A through Z, inclusive (range)
[a-d[m-p]] a through d, or m through p: [a-dm-p] (union)
[a-z&&[def]] d, e, or f (intersection)
[a-z&&[^bc]] a through z, except for b and c: [ad-z] (subtraction)
[a-z&&[^m-p]] a through z, and not m through p: [a-lq-z](subtraction)
Predefined character classes
. Any character (may or may not match line terminators)
\S A non-whitespace character: [^\s]
\w A word character: [a-zA-Z_0-9]
\W A non-word character: [^\w]
Boundary matchers
^ The beginning of a line
$ The end of a line
\b A word boundary
\B A non-word boundary
\A The beginning of the input
\G The end of the previous match
\Z The end of the input but for the final terminator, if any
\z The end of the input
Greedy quantifiers
X? X, once or not at all
X* X, zero or more times
X+ X, one or more times
X{n} X, exactly n times
X{n,} X, at least n times
X{n,m} X, at least n but not more than m times
Reluctant quantifiers
X?? X, once or not at all
X*? X, zero or more times
X+? X, one or more times
X{n}? X, exactly n times
X{n,}? X, at least n times
X{n,m}? X, at least n but not more than m times
Possessive quantifiers
X?+ X, once or not at all
X*+ X, zero or more times
X++ X, one or more times
X{n}+ X, exactly n times
X{n,}+ X, at least n times
X{n,m}+ X, at least n but not more than m times
Logical operators
XY X followed by Y
X|Y Either X or Y
(X) X, as a capturing group
Back references
\n Whatever the nth capturing group matched
Quotation
\ Nothing, but quotes the following character
\Q Nothing, but quotes all characters until \E
\E Nothing, but ends quoting started by \Q
Special constructs (non-capturing)
(?:X) X, as a non-capturing group
(?idmsux-idmsux) Nothing, but turns match flags on - off
(?idmsux-idmsux:X) X, as a non-capturing group with the given flags on - off
(?=X) X, via zero-width positive lookahead
(?!X) X, via zero-width negative lookahead
(?<=X) X, via zero-width positive lookbehind
(?<!X) X, via zero-width negative lookbehind
(?>X) X, as an independent, non-capturing group
1 Literal escape \x
2 Grouping [...]
3 Range a-z
4 Union [a-e][i-u]
5 Intersection [a-z&&[aeiou]]
A newline (line feed) character ('\n'),
A carriage-return character followed immediately by a newline character ("\r\n"),
A standalone carriage-return character ('\r'),
A next-line character ('\u0085'),
A line-separator character ('\u2028'), or
A paragraph-separator character ('\u2029)
</pre>
</body></html>
Sources du même auteur
Sources de la même categorie
Commentaires et avis
Discussions en rapport avec ce code source dans le forum
JEU SCRABBLE [ par boubaj ]
SLT J CHERCHE UN PROGRAMME EN JAVA KI PERMET DINSERER UN MOT DANS UNE GRILLE DE SCRABBLE. PLEASE AIDEZ MOI
inserer un mot dans une grille de scrabble en java ou en c [ par boubaj ]
slt tout le monde je recherche un programme (en JAVA ou en C) qui permet d'insérer un mot dans une grille de Scrabble.
Jeu type Worms en Java, problème avec repaint() [ par On90 ]
Bonjour,Dans le cadre d'un projet on doit développer un jeu de Worms en 2D avec JavaJe dispose d'une classe héritant de JFrame pour la fenêtre, une hé
Anagramme trouver le bon mot [ par flo0011 ]
Je veux essayer de creér un jeu mais je ne sais pas comment m'y prendre:Ce jeu consiste à découvrir le bon mot vis-à-vis d'une suite de lettres dans l
Statistique tétris [ par awabi ]
Bonjour, je suis débutante en java et on nous a donné la source du jeu tétris comme Tp. En faite je voudrai créer une autre fenêtre statistique qui af
Programmation jeu de poker et blackjack [ par gelomaak ]
Bonjour,J'ai commencé à étudier Java et je suis entrain de faire un exercice sur le polymorphisme et l'héritage. Je ne sais pas par où commencer pour
jeu d'echec [ par anouar2009 ]
je cherche un programme java de jeu d'echec sans interface graphique "avec des matrice"
des images qui bougent [ par amouna03 ]
dans le cadre d'un projet java.je voulais développer un jeu,pour cela j'ai divisé mon projet en plusieurs étapes. dans un premier temps je veux bouge
[Jeu - Java - Recrutement]SF War [ par rXp ]
Bonjour,Je suis Emmanuel, j'ai 17 ans et je suis en 2ième année de mon apprentissage de programmation. Gamer et programmeur depuis déjà des année tout
|
Derniers Blogs
IMAGINE CUP 2012, MAKE A SIGN EN FINALEIMAGINE CUP 2012, MAKE A SIGN EN FINALE par junarnoalg
Voilà qui est fait, la nouvelle est officielle ! L'équipe belge "Make a Sign" va au pays des kangourous défendre son projet dans la catégorie Software Design. http://www.imaginecup.com/CompetitionsContent/Competition/WorldwideFinalists.aspx V...
Cliquez pour lire la suite de l'article par junarnoalg KINECT 1.5 IS OUT !KINECT 1.5 IS OUT ! par Vko
La version 1.5 du Kinect For Microsoft vient tout juste de sortir ! Plein de nouveautés: Tracking de squelette en Near Mode Détection en position assise Détection faciale avec un SDK dédié Documentation et des guideline (enfin) Un out...
Cliquez pour lire la suite de l'article par Vko LES ACTUALITéS DE LA SEMAINE SUR C2I.FR (14 MAI - 20 MAI) LES ACTUALITéS DE LA SEMAINE SUR C2I.FR (14 MAI - 20 MAI) par richardc
Mise à jour des Web API du 14 Mai
Réservez dès maintenant votre journée du 20 juin pour le Windows Azure Dev Camp 2012 à Paris
Mise à jour de Team Foundation Service
MechCommander 2 sur Windows 8
Entity Framework 5 Release Candidate e...
Cliquez pour lire la suite de l'article par richardc REACTIVE EXTENSIONS : CONSOMMER DES SERVICES AVEC RX PARTIE 3, LES PIèGES à éVITERREACTIVE EXTENSIONS : CONSOMMER DES SERVICES AVEC RX PARTIE 3, LES PIèGES à éVITER par Groc
Une mauvaise utilisation de rx lors de l'écriture d'une couche d'accès à des services peut conduire à des cas embarassants avec des erreurs mal gérées, des appels qui ne partent lorsqu'ils le devraient, et même des résultats incorrects . le tout nuis...
Cliquez pour lire la suite de l'article par Groc SHAREPOINT BLOG SITE, PROBLèME D'ARCHIVESSHAREPOINT BLOG SITE, PROBLèME D'ARCHIVES par junarnoalg
Dernièrement, nous avons migré le site
myTIC
vers un nouveau serveur SharePoint 2010. Dans les contenus que nous vouloins récupérer, nous avions un certain nombre de blogs.
Nous avons utilisé les commandes Power...
Cliquez pour lire la suite de l'article par junarnoalg
Forum
LA COUCHE DAOLA COUCHE DAO par soukaouta
Cliquez pour lire la suite par soukaouta RE : NETBEANSRE : NETBEANS par nice22
Cliquez pour lire la suite par nice22
Logiciels
sDEVIS-FACTURES vlPRO (8.1.0.3)SDEVIS-FACTURES VLPRO (8.1.0.3)sDEVIS-FACTURES vlPRO a été mis au point pour les particuliers, créateurs, entrepreneurs, artisa... Cliquez pour télécharger sDEVIS-FACTURES vlPRO 974 Application Server (12.2.4.6)974 APPLICATION SERVER (12.2.4.6)Développez de puissantes applications dans un environnement de 'cloud computing', clusterisé, séc... Cliquez pour télécharger 974 Application Server vPicture (1.4.2.1)VPICTURE (1.4.2.1)Avec vPicture, hébergez vos images facilement et rapidement.
vPicture est un utilitaire simple, ... Cliquez pour télécharger vPicture Easy-Planning (2.2.1.6)EASY-PLANNING (2.2.1.6)Easy-Planning permet de créer des plannings sous la représentation de diagrammes et est adapté au... Cliquez pour télécharger Easy-Planning COM-BACKUP (2.0)COM-BACKUP (2.0)
COM-BACKUP est un logiciel de sauvegarde qui permet de planifier les sauvegardes de vos dossiers ...
Cliquez pour télécharger COM-BACKUP
|