Donnez vie à vos documents numériques !
 

Répondre à : Propriété d’un champ

abracadabraPDF Forums PDF – Général Propriété d’un champ Répondre à : Propriété d’un champ

#73952
bebarth
Maître des clés

bonjour,
2 façons de faire :

for (var i=0; i<this.numFields; i++) {
if (this.getNthFieldName(i).indexOf("ABC")==0) {
...
}
}
ou
for (var i=0; i<this.numFields; i++) {
if (/^ABC/.test(this.getNthFieldName(i))) {
...
}
}

@+
😎