wintestinput3 949 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /^[\w]+/
  2. *** Failers
  3. École
  4. /^[\w]+/Lfrench
  5. École
  6. /^[\w]+/
  7. *** Failers
  8. École
  9. /^[\W]+/
  10. École
  11. /^[\W]+/Lfrench
  12. *** Failers
  13. École
  14. /[\b]/
  15. \b
  16. *** Failers
  17. a
  18. /[\b]/Lfrench
  19. \b
  20. *** Failers
  21. a
  22. /^\w+/
  23. *** Failers
  24. École
  25. /^\w+/Lfrench
  26. École
  27. /(.+)\b(.+)/
  28. École
  29. /(.+)\b(.+)/Lfrench
  30. *** Failers
  31. École
  32. /École/i
  33. École
  34. *** Failers
  35. école
  36. /École/iLfrench
  37. École
  38. école
  39. /\w/IS
  40. /\w/ISLfrench
  41. /^[\xc8-\xc9]/iLfrench
  42. École
  43. école
  44. /^[\xc8-\xc9]/Lfrench
  45. École
  46. *** Failers
  47. école
  48. /\W+/Lfrench
  49. >>>\xaa<<<
  50. >>>\xba<<<
  51. /[\W]+/Lfrench
  52. >>>\xaa<<<
  53. >>>\xba<<<
  54. /[^[:alpha:]]+/Lfrench
  55. >>>\xaa<<<
  56. >>>\xba<<<
  57. /\w+/Lfrench
  58. >>>\xaa<<<
  59. >>>\xba<<<
  60. /[\w]+/Lfrench
  61. >>>\xaa<<<
  62. >>>\xba<<<
  63. /[[:alpha:]]+/Lfrench
  64. >>>\xaa<<<
  65. >>>\xba<<<
  66. /[[:alpha:]][[:lower:]][[:upper:]]/DZLfrench
  67. / End of testinput3 /