fork(1) download
  1. <?php
  2. print(preg_match('#^\p{Lu}#u', "This is string"));
  3. print(preg_match('#^\p{Lu}#u', "this is string"));
  4. print(preg_match('#^\p{Lu}#u', "5 not good"));
  5. print(preg_match("#^\p{Lu}#u", "Увеличи starts capital"));
  6. print(preg_match('#^\p{Lu}#u', "мащабиране no capital"));
  7. ?>
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
10010