Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

only numbers with withespace (javascript)

Community Beginner ,
Aug 21, 2018 Aug 21, 2018

Hello,

In a field you can enter only phone numbers (with a 0 before). I have the following script:

var regexp = /\D/

if(regexp.test(event.value)==true)

{

app.alert("Bitte nur Zahlen eingeben: 052 123 45 67",3)

}

else

{

event.target.fillColor = color.transparent

}

This entry may also contain withespaces. but when i write the number with a space, i got the error massage.

What exactly do I have to enter to get a result?

Thank you for your help 🙂

TOPICS
Acrobat SDK and JavaScript , Windows
580
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Aug 21, 2018 Aug 21, 2018

Use this code:

if (/^[\d\s]*$/.test(event.value)==false) {

    app.alert("Bitte nur Zahlen eingeben: 052 123 45 67",3);

} else {

    event.target.fillColor = color.transparent;

}

You might also want to reject the incorrect values.

To do that add this code after line #2:

event.rc = false;

Translate
Community Expert ,
Aug 21, 2018 Aug 21, 2018

Use this code:

if (/^[\d\s]*$/.test(event.value)==false) {

    app.alert("Bitte nur Zahlen eingeben: 052 123 45 67",3);

} else {

    event.target.fillColor = color.transparent;

}

You might also want to reject the incorrect values.

To do that add this code after line #2:

event.rc = false;

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Aug 21, 2018 Aug 21, 2018
LATEST

Hi

thank you, that was the solution 🙂

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines