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

only numbers with withespace (javascript)

Community Beginner ,
Aug 21, 2018 Aug 21, 2018

Copy link to clipboard

Copied

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

Views

401

Translate

Translate

Report

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;

Votes

Translate

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

Copy link to clipboard

Copied

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;

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

LATEST

Hi

thank you, that was the solution 🙂

Votes

Translate

Translate

Report

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