PHD TEst

Post

   31-12-2024 - 31-12-2024

// Verify OTP // Designation validation (removed required check) // GST format validation: 15 alphanumeric characters with at least one letter and one digit //var gstReg = /^(?=.*[A-Z])(?=.*\d)[A-Z0-9]{15}$/; // ICSI format validation: Example format (ICSI/1234/2020) // var icsiReg = /^ICSI\/\d{4}\/\d{4}$/; var icsiReg = /^[a-zA-Z0-9]+$/; // Allow both alphanumeric and numbers without any specific format