formfield requires 2 commas

C

Crescionini Sascha

hello ng

does anyone have an idea how to check in an input field,
if the value contains exactly two commas?

examples:
"gaga,gogo,gugu" or ",,gagaggigi"

any ideas?

sascha
 
E

Evertjan.

Crescionini Sascha wrote on 22 jul 2003 in comp.lang.javascript:
hello ng

does anyone have an idea how to check in an input field,
if the value contains exactly two commas?

examples:
"gaga,gogo,gugu" or ",,gagaggigi"

any ideas?

s = "gaga,gogo,gugu";
n= s.replace(/[^,]+/g,"").length;
alert(n);

[the + speeds things up, says John S.]
 
E

Evertjan.

Evertjan. wrote on 22 jul 2003 in comp.lang.javascript:
Crescionini Sascha wrote on 22 jul 2003 in comp.lang.javascript:
hello ng

does anyone have an idea how to check in an input field,
if the value contains exactly two commas?

examples:
"gaga,gogo,gugu" or ",,gagaggigi"

any ideas?

s = "gaga,gogo,gugu";
n= s.replace(/[^,]+/g,"").length;
alert(n);

[the + speeds things up, says John S.]

O sorry, you wanted a test:

s = "gaga,gogo,gugu";
if(s.replace(/[^,]+/g,"").length==2)alert("Yes");
 
C

Crescionini Sascha

hi

thank you very much, works great!!!

greets
sascha

Evertjan. said:
Evertjan. wrote on 22 jul 2003 in comp.lang.javascript:
Crescionini Sascha wrote on 22 jul 2003 in comp.lang.javascript:
hello ng

does anyone have an idea how to check in an input field,
if the value contains exactly two commas?

examples:
"gaga,gogo,gugu" or ",,gagaggigi"

any ideas?

s = "gaga,gogo,gugu";
n= s.replace(/[^,]+/g,"").length;
alert(n);

[the + speeds things up, says John S.]

O sorry, you wanted a test:

s = "gaga,gogo,gugu";
if(s.replace(/[^,]+/g,"").length==2)alert("Yes");
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,774
Messages
2,569,599
Members
45,175
Latest member
Vinay Kumar_ Nevatia
Top