Regex AND – Line has to match multiple expressions

We need to mimic “AND” functionality using look ahead expression (?=expr). See the construct below: This functionality works in Java/Phyton/Perl/PHP and many other languages, however it might not be available in JavaScript. Check latest JS specification and let me know if this has changed. EXAMPLE: Will match:111-234 sometext 3D Demo Will not match:1113-223 sometext 3D … Continue reading Regex AND – Line has to match multiple expressions