JavaScript - How to check if the string is of a specific format? The Next CEO of Stack OverflowHow do JavaScript closures work?How to check empty/undefined/null string in JavaScript?How do I check if an element is hidden in jQuery?How do I remove a property from a JavaScript object?How do I include a JavaScript file in another JavaScript file?How to replace all occurrences of a string in JavaScriptWhat does “use strict” do in JavaScript, and what is the reasoning behind it?How to check whether a string contains a substring in JavaScript?How to check if an object is an array?How do I remove a particular element from an array in JavaScript?

Example of a Mathematician/Physicist whose Other Publications during their PhD eclipsed their PhD Thesis

Is a distribution that is normal, but highly skewed considered Gaussian?

Can MTA send mail via a relay without being told so?

What did we know about the Kessel run before the prequels?

Is the D&D universe the same as the Forgotten Realms universe?

Should I tutor a student who I know has cheated on their homework?

How many extra stops do monopods offer for tele photographs?

I believe this to be a fraud - hired, then asked to cash check and send cash as Bitcoin

What does "Its cash flow is deeply negative" mean?

The past simple of "gaslight" – "gaslighted" or "gaslit"?

How to count occurrences of text in a file?

Why isn't the Mueller report being released completely and unredacted?

Axiom Schema vs Axiom

How to invert MapIndexed on a ragged structure? How to construct a tree from rules?

Is it possible to use a NPN BJT as switch, from single power source?

How to get from Geneva Airport to Metabief, Doubs, France by public transport?

How to prove a simple equation?

Writing differences on a blackboard

Is it possible to replace duplicates of a character with one character using tr

How to install OpenCV on Raspbian Stretch?

A Man With a Stainless Steel Endoskeleton (like The Terminator) Fighting Cloaked Aliens Only He Can See

Why don't programming languages automatically manage the synchronous/asynchronous problem?

Help understanding this unsettling image of Titan, Epimetheus, and Saturn's rings?

Chain wire methods together in Lightning Web Components



JavaScript - How to check if the string is of a specific format?



The Next CEO of Stack OverflowHow do JavaScript closures work?How to check empty/undefined/null string in JavaScript?How do I check if an element is hidden in jQuery?How do I remove a property from a JavaScript object?How do I include a JavaScript file in another JavaScript file?How to replace all occurrences of a string in JavaScriptWhat does “use strict” do in JavaScript, and what is the reasoning behind it?How to check whether a string contains a substring in JavaScript?How to check if an object is an array?How do I remove a particular element from an array in JavaScript?










-1















I am trying to check if a string is of the specific format MM/YYYY.



How would I go about this? What I have seen so far involves the use of test() but I am unsure.










share|improve this question






















  • you should regular expression

    – Maheer Ali
    Mar 21 at 18:15






  • 2





    /^d1,2/d4$/

    – Pranav C Balan
    Mar 21 at 18:15






  • 4





    A regular expression would be fine here, a very simple one would be /d2/d4 (or something like that)

    – Sterling Archer
    Mar 21 at 18:15












  • @PranavCBalan "13/2999" passes?

    – VLAZ
    Mar 21 at 18:17






  • 1





    You can use regular expression, that will solve your issues. But if you are working with date format, i suggest use moment.js for handling this kind of stuffs.

    – Robin
    Mar 21 at 18:17















-1















I am trying to check if a string is of the specific format MM/YYYY.



How would I go about this? What I have seen so far involves the use of test() but I am unsure.










share|improve this question






















  • you should regular expression

    – Maheer Ali
    Mar 21 at 18:15






  • 2





    /^d1,2/d4$/

    – Pranav C Balan
    Mar 21 at 18:15






  • 4





    A regular expression would be fine here, a very simple one would be /d2/d4 (or something like that)

    – Sterling Archer
    Mar 21 at 18:15












  • @PranavCBalan "13/2999" passes?

    – VLAZ
    Mar 21 at 18:17






  • 1





    You can use regular expression, that will solve your issues. But if you are working with date format, i suggest use moment.js for handling this kind of stuffs.

    – Robin
    Mar 21 at 18:17













-1












-1








-1








I am trying to check if a string is of the specific format MM/YYYY.



How would I go about this? What I have seen so far involves the use of test() but I am unsure.










share|improve this question














I am trying to check if a string is of the specific format MM/YYYY.



How would I go about this? What I have seen so far involves the use of test() but I am unsure.







javascript






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 21 at 18:14









taway0282taway0282

256




256












  • you should regular expression

    – Maheer Ali
    Mar 21 at 18:15






  • 2





    /^d1,2/d4$/

    – Pranav C Balan
    Mar 21 at 18:15






  • 4





    A regular expression would be fine here, a very simple one would be /d2/d4 (or something like that)

    – Sterling Archer
    Mar 21 at 18:15












  • @PranavCBalan "13/2999" passes?

    – VLAZ
    Mar 21 at 18:17






  • 1





    You can use regular expression, that will solve your issues. But if you are working with date format, i suggest use moment.js for handling this kind of stuffs.

    – Robin
    Mar 21 at 18:17

















  • you should regular expression

    – Maheer Ali
    Mar 21 at 18:15






  • 2





    /^d1,2/d4$/

    – Pranav C Balan
    Mar 21 at 18:15






  • 4





    A regular expression would be fine here, a very simple one would be /d2/d4 (or something like that)

    – Sterling Archer
    Mar 21 at 18:15












  • @PranavCBalan "13/2999" passes?

    – VLAZ
    Mar 21 at 18:17






  • 1





    You can use regular expression, that will solve your issues. But if you are working with date format, i suggest use moment.js for handling this kind of stuffs.

    – Robin
    Mar 21 at 18:17
















you should regular expression

– Maheer Ali
Mar 21 at 18:15





you should regular expression

– Maheer Ali
Mar 21 at 18:15




2




2





/^d1,2/d4$/

– Pranav C Balan
Mar 21 at 18:15





/^d1,2/d4$/

– Pranav C Balan
Mar 21 at 18:15




4




4





A regular expression would be fine here, a very simple one would be /d2/d4 (or something like that)

– Sterling Archer
Mar 21 at 18:15






A regular expression would be fine here, a very simple one would be /d2/d4 (or something like that)

– Sterling Archer
Mar 21 at 18:15














@PranavCBalan "13/2999" passes?

– VLAZ
Mar 21 at 18:17





@PranavCBalan "13/2999" passes?

– VLAZ
Mar 21 at 18:17




1




1





You can use regular expression, that will solve your issues. But if you are working with date format, i suggest use moment.js for handling this kind of stuffs.

– Robin
Mar 21 at 18:17





You can use regular expression, that will solve your issues. But if you are working with date format, i suggest use moment.js for handling this kind of stuffs.

– Robin
Mar 21 at 18:17












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55286799%2fjavascript-how-to-check-if-the-string-is-of-a-specific-format%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55286799%2fjavascript-how-to-check-if-the-string-is-of-a-specific-format%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript