Move manually in the repository.
/ Peter Bortas
Previous text:
2003-09-24 10:52: Subject: foo
| > Regexp.PCRE("(\1234.).*n")->split2("p\1235ke \1234s fun"); | (4) Result: ({ /* 2 elements */ | "\1234s fun", | "\1234s" | }) | > Regexp.PCRE.split2("(\1234.).*n","p\1235ke \1234s fun"); | (2) Result: ({ /* 2 elements */ | "\1234s fun", | "\1234s" | }) | > Regexp.PCRE.split("(\1234.).*n","p\1235ke \1234s fun"); | (3) Result: ({ /* 1 element */ | "\1234s" | }) | > Regexp.PCRE.Plain("(\1234.).*n")->split2("p\1235ke \1234s fun"); | Bad argument 1 to pcre->create(). Expected string (8bit) | :-)
So, to check this in I need to move away Regexp like in the commented text. Any ideas?
/ Mirar