Skip to main content
Inspiring
January 26, 2018
Answered

First row from multiline textfield

  • January 26, 2018
  • 2 replies
  • 651 views

Hi,

how can I extract the first line of a multiline textfield into a variable with javascript?

The thing is I would like to use a multiline textfield for the address so that I don't need to use a lot of separate textfields.

I need to extract the first line of it to get the client name (which always would be the first line of that field)

Best regards

This topic has been closed for replies.
Correct answer try67

Use this code:

this.getField("Text1").valueAsString.split("\r")[0]

Replace "Text1" with the actual field name, of course.

2 replies

Inspiring
January 26, 2018

If one has a series of different forms with the same type of fields it might be better to obtain the data at the smallest break down and then create the combined fields. All of this data could be held in an exported FDF file and then that file could be imported into any form to automatically fill-in only the form field with same name of the field in the FDF. An example of this approach was provided in the early versions of the Acrobat distribution CD-Rom

try67
Community Expert
try67Community ExpertCorrect answer
Community Expert
January 26, 2018

Use this code:

this.getField("Text1").valueAsString.split("\r")[0]

Replace "Text1" with the actual field name, of course.

AirManAuthor
Inspiring
January 26, 2018

Thank you very much!