abracadabraPDF › Forums › PDF – Général › Propriété d’un champ › Répondre à : Propriété d’un champ
12 février 2024 à 17:27
#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))) {
...
}
}
@+
😎