Skip to main content
Participant
August 14, 2019
Answered

Printing the last digits of a textbox

  • August 14, 2019
  • 1 reply
  • 540 views

Guys, I have a pretty simple question, but I've no idea about writing command in JS.

The thing I'm trying to do is to print in a textbox the last five digits of another textbox. Something like this:

in my first textbox, I have this serial number: FTFYIOI66779995, and I want to print the last 5 digits: 79995 in other textbox.

Hope I explained myself right And thanks for your help

This topic has been closed for replies.
Correct answer try67

If the first field is called "Text1" you can use the following code as the custom calculation script of the second field:

event.value = this.getField("Text1").valueAsString.substr(-5);

1 reply

try67
Community Expert
try67Community ExpertCorrect answer
Community Expert
August 14, 2019

If the first field is called "Text1" you can use the following code as the custom calculation script of the second field:

event.value = this.getField("Text1").valueAsString.substr(-5);

Participant
August 14, 2019

Thank you! It worked perfectly