| View previous topic :: View next topic |
| Author |
Message |
cesarz Site Admin
Joined: 04 Apr 2007 Posts: 294 Location: Buenos Aires, Argentina
|
Posted: Mon Mar 22, 2010 9:52 pm Post subject: FORMAT ISBN BARCODES |
|
|
EN--------------------------------------------------------------------------
I have a 17 digits ISBN barcode. This code has the following form:
123-4-5678-9012-3 (13 digits and 4 dash).
I wish to keep out dashes and convert it to a standard 13 digits only code.
How can I do it?.
FR--------------------------------------------------------------------------
J'ai un code à barres ISBN à 17 digits. ce code a la forme suivante:
123-4-5678-9012-3 (13 digits et 4 tirets).
Je voudrais enlever les tirets et le convertir en un code standard à 13 caractères numériques seulement.
Comment puis-je faire?.
 _________________ CesarZ-SofToGo. |
|
| Back to top |
|
 |
cesarz Site Admin
Joined: 04 Apr 2007 Posts: 294 Location: Buenos Aires, Argentina
|
Posted: Mon Mar 22, 2010 9:58 pm Post subject: BC_ED |
|
|
EN----------------------------------------------------------------
Use the BC_EDIT_X sections.
Catch the following codes
* 17 chars only
* Match a dash in the position 4
Process
* Keep out dashis by 'YN' pattern
* Use as-is, do not insert chars
See:
http://www.sof2go.net/man/wtn/wtncevt/en/Cha_6_Page.htm#6.XI
EN----------------------------------------------------------------
Utilisez les sections BC_EDIT_X.
Prenez les codes suivants
* 17 caractères seulement
* Possède un tiert en position 4
Traitement
* Enlever les tirets par le filtre 'YN'
* Utiliser tel quel, sans insérer
Voir:
http://www.sof2go.net/man/wtn/wtncevt/fr/Cha_6_Page.htm#6.XI
| Code: | [BC_EDIT_0]
On=Yes
LenDo=Yes
LenMin=17
LenMax=17
MatchDo=Yes
MatchPos=4
MatchStr=-
TypeDo=No
TypeBc=0
Filter=YYYNYNYYYYNYYYYNY
Insert=************* |
_________________ CesarZ-SofToGo. |
|
| Back to top |
|
 |
|