Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Using Visual Studio Create a console project. Have users to enter name and credit card number, verify the information. 1. Name field: -- both first
Using Visual Studio
Create a console project. Have users to enter name and credit card number, verify the information. 1. Name field: -- both first name and last name must be entered separated by a single space. -- Only letters can be accepted. -- Use patten "\b[a-zA-Z]{2,15}\s[a-zA-Z]{2,15}\b" or ^[a-zA-Z]+ [a-zA-Z]$+ 2. Card Number field: -- Only digits can be accepted. -- Pattern: "^[0-9]{12,19}$"
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started