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?
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
|
show 5 more comments
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
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
|
show 5 more comments
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
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
javascript
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
|
show 5 more comments
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
|
show 5 more comments
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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