|
|
|
|
||||||
![]() |
|
|
LinkBack | Outils de la discussion |
|
|
#1 |
|
Messages: n/a
Hébergeur: |
How can i detect if there is more then capital letter in a word?
|
|
|
|
#2 |
|
Messages: n/a
Hébergeur: |
On 14 Sep, 12:03, Moham12345 <m_w_r...@hotmail.com> wrote:
> How can i detect if there is more then capital letter in a word? sorry i think i did a typo just above... i was meant to say... How can i detect more then one capital letter in a word? |
|
|
|
#3 |
|
Messages: n/a
Hébergeur: |
On 14 Sep, 12:10, Moham12345 <m_w_r...@hotmail.com> wrote:
> On 14 Sep, 12:03, Moham12345 <m_w_r...@hotmail.com> wrote: > > > How can i detect if there is more then capital letter in a word? > > sorry i think i did a typo just above... i was meant to say... > > How can i detect more then one capital letter in a word? I think you were right the first time! |
|
|
|
#4 |
|
Messages: n/a
Hébergeur: |
On 14.09.2007 13:10 Moham12345 wrote:
> On 14 Sep, 12:03, Moham12345 <m_w_r...@hotmail.com> wrote: >> How can i detect if there is more then capital letter in a word? > > sorry i think i did a typo just above... i was meant to say... > > How can i detect more then one capital letter in a word? > many possibilities, for example preg_match_all('/[A-Z]/', $str, $m); $num_up = count($m[0]); or $num_up = strlen($str) - strlen(preg_replace('/[A-Z]/', '', $str)); or $num_up = levenshtein($str, strtolower($str)); where $str is your string and $num_up is a number of uppercase letters in it. -- gosha bine makrell ~ http://www.tagarga.com/blok/makrell php done right http://code.google.com/p/pihipi |
|
|
|
#5 |
|
Messages: n/a
Hébergeur: |
On Fri, 14 Sep 2007 13:44:04 +0200, gosha bine <stereofrog@gmail.com>
wrote: > On 14.09.2007 13:10 Moham12345 wrote: >> On 14 Sep, 12:03, Moham12345 <m_w_r...@hotmail.com> wrote: >>> How can i detect if there is more then capital letter in a word? >> sorry i think i did a typo just above... i was meant to say... >> How can i detect more then one capital letter in a word? >> > > > many possibilities, for example > > preg_match_all('/[A-Z]/', $str, $m); > $num_up = count($m[0]); Let's summarize by $num_up = preg_match_all('/[A-Z]/', $str, $m); -- Rik Wasmus |
|
|
|
#6 |
|
Messages: n/a
Hébergeur: |
On 14.09.2007 15:13 Rik Wasmus wrote:
> On Fri, 14 Sep 2007 13:44:04 +0200, gosha bine <stereofrog@gmail.com> > wrote: > >> On 14.09.2007 13:10 Moham12345 wrote: >>> On 14 Sep, 12:03, Moham12345 <m_w_r...@hotmail.com> wrote: >>>> How can i detect if there is more then capital letter in a word? >>> sorry i think i did a typo just above... i was meant to say... >>> How can i detect more then one capital letter in a word? >>> >> >> >> many possibilities, for example >> >> preg_match_all('/[A-Z]/', $str, $m); >> $num_up = count($m[0]); > > > Let's summarize by $num_up = preg_match_all('/[A-Z]/', $str, $m); > Yes. I find it utterly stupid that you can't omit the third param forthe cases like this. -- gosha bine makrell ~ http://www.tagarga.com/blok/makrell php done right http://code.google.com/p/pihipi |
|
![]() |
| Outils de la discussion | |
|
|