AbstractUnicodeString.php 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\String;
  11. use Symfony\Component\String\Exception\ExceptionInterface;
  12. use Symfony\Component\String\Exception\InvalidArgumentException;
  13. use Symfony\Component\String\Exception\RuntimeException;
  14. /**
  15. * Represents a string of abstract Unicode characters.
  16. *
  17. * Unicode defines 3 types of "characters" (bytes, code points and grapheme clusters).
  18. * This class is the abstract type to use as a type-hint when the logic you want to
  19. * implement is Unicode-aware but doesn't care about code points vs grapheme clusters.
  20. *
  21. * @author Nicolas Grekas <p@tchwork.com>
  22. *
  23. * @throws ExceptionInterface
  24. */
  25. abstract class AbstractUnicodeString extends AbstractString
  26. {
  27. public const NFC = \Normalizer::NFC;
  28. public const NFD = \Normalizer::NFD;
  29. public const NFKC = \Normalizer::NFKC;
  30. public const NFKD = \Normalizer::NFKD;
  31. // all ASCII letters sorted by typical frequency of occurrence
  32. private const ASCII = "\x20\x65\x69\x61\x73\x6E\x74\x72\x6F\x6C\x75\x64\x5D\x5B\x63\x6D\x70\x27\x0A\x67\x7C\x68\x76\x2E\x66\x62\x2C\x3A\x3D\x2D\x71\x31\x30\x43\x32\x2A\x79\x78\x29\x28\x4C\x39\x41\x53\x2F\x50\x22\x45\x6A\x4D\x49\x6B\x33\x3E\x35\x54\x3C\x44\x34\x7D\x42\x7B\x38\x46\x77\x52\x36\x37\x55\x47\x4E\x3B\x4A\x7A\x56\x23\x48\x4F\x57\x5F\x26\x21\x4B\x3F\x58\x51\x25\x59\x5C\x09\x5A\x2B\x7E\x5E\x24\x40\x60\x7F\x00\x01\x02\x03\x04\x05\x06\x07\x08\x0B\x0C\x0D\x0E\x0F\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F";
  33. // the subset of folded case mappings that is not in lower case mappings
  34. private const FOLD_FROM = ['İ', 'µ', 'ſ', "\xCD\x85", 'ς', 'ϐ', 'ϑ', 'ϕ', 'ϖ', 'ϰ', 'ϱ', 'ϵ', 'ẛ', "\xE1\xBE\xBE", 'ß', 'ʼn', 'ǰ', 'ΐ', 'ΰ', 'և', 'ẖ', 'ẗ', 'ẘ', 'ẙ', 'ẚ', 'ẞ', 'ὐ', 'ὒ', 'ὔ', 'ὖ', 'ᾀ', 'ᾁ', 'ᾂ', 'ᾃ', 'ᾄ', 'ᾅ', 'ᾆ', 'ᾇ', 'ᾈ', 'ᾉ', 'ᾊ', 'ᾋ', 'ᾌ', 'ᾍ', 'ᾎ', 'ᾏ', 'ᾐ', 'ᾑ', 'ᾒ', 'ᾓ', 'ᾔ', 'ᾕ', 'ᾖ', 'ᾗ', 'ᾘ', 'ᾙ', 'ᾚ', 'ᾛ', 'ᾜ', 'ᾝ', 'ᾞ', 'ᾟ', 'ᾠ', 'ᾡ', 'ᾢ', 'ᾣ', 'ᾤ', 'ᾥ', 'ᾦ', 'ᾧ', 'ᾨ', 'ᾩ', 'ᾪ', 'ᾫ', 'ᾬ', 'ᾭ', 'ᾮ', 'ᾯ', 'ᾲ', 'ᾳ', 'ᾴ', 'ᾶ', 'ᾷ', 'ᾼ', 'ῂ', 'ῃ', 'ῄ', 'ῆ', 'ῇ', 'ῌ', 'ῒ', 'ῖ', 'ῗ', 'ῢ', 'ῤ', 'ῦ', 'ῧ', 'ῲ', 'ῳ', 'ῴ', 'ῶ', 'ῷ', 'ῼ', 'ff', 'fi', 'fl', 'ffi', 'ffl', 'ſt', 'st', 'ﬓ', 'ﬔ', 'ﬕ', 'ﬖ', 'ﬗ'];
  35. private const FOLD_TO = ['i̇', 'μ', 's', 'ι', 'σ', 'β', 'θ', 'φ', 'π', 'κ', 'ρ', 'ε', 'ṡ', 'ι', 'ss', 'ʼn', 'ǰ', 'ΐ', 'ΰ', 'եւ', 'ẖ', 'ẗ', 'ẘ', 'ẙ', 'aʾ', 'ss', 'ὐ', 'ὒ', 'ὔ', 'ὖ', 'ἀι', 'ἁι', 'ἂι', 'ἃι', 'ἄι', 'ἅι', 'ἆι', 'ἇι', 'ἀι', 'ἁι', 'ἂι', 'ἃι', 'ἄι', 'ἅι', 'ἆι', 'ἇι', 'ἠι', 'ἡι', 'ἢι', 'ἣι', 'ἤι', 'ἥι', 'ἦι', 'ἧι', 'ἠι', 'ἡι', 'ἢι', 'ἣι', 'ἤι', 'ἥι', 'ἦι', 'ἧι', 'ὠι', 'ὡι', 'ὢι', 'ὣι', 'ὤι', 'ὥι', 'ὦι', 'ὧι', 'ὠι', 'ὡι', 'ὢι', 'ὣι', 'ὤι', 'ὥι', 'ὦι', 'ὧι', 'ὰι', 'αι', 'άι', 'ᾶ', 'ᾶι', 'αι', 'ὴι', 'ηι', 'ήι', 'ῆ', 'ῆι', 'ηι', 'ῒ', 'ῖ', 'ῗ', 'ῢ', 'ῤ', 'ῦ', 'ῧ', 'ὼι', 'ωι', 'ώι', 'ῶ', 'ῶι', 'ωι', 'ff', 'fi', 'fl', 'ffi', 'ffl', 'st', 'st', 'մն', 'մե', 'մի', 'վն', 'մխ'];
  36. // the subset of https://github.com/unicode-org/cldr/blob/master/common/transforms/Latin-ASCII.xml that is not in NFKD
  37. private const TRANSLIT_FROM = ['Æ', 'Ð', 'Ø', 'Þ', 'ß', 'æ', 'ð', 'ø', 'þ', 'Đ', 'đ', 'Ħ', 'ħ', 'ı', 'ĸ', 'Ŀ', 'ŀ', 'Ł', 'ł', 'ʼn', 'Ŋ', 'ŋ', 'Œ', 'œ', 'Ŧ', 'ŧ', 'ƀ', 'Ɓ', 'Ƃ', 'ƃ', 'Ƈ', 'ƈ', 'Ɖ', 'Ɗ', 'Ƌ', 'ƌ', 'Ɛ', 'Ƒ', 'ƒ', 'Ɠ', 'ƕ', 'Ɩ', 'Ɨ', 'Ƙ', 'ƙ', 'ƚ', 'Ɲ', 'ƞ', 'Ƣ', 'ƣ', 'Ƥ', 'ƥ', 'ƫ', 'Ƭ', 'ƭ', 'Ʈ', 'Ʋ', 'Ƴ', 'ƴ', 'Ƶ', 'ƶ', 'DŽ', 'Dž', 'dž', 'Ǥ', 'ǥ', 'ȡ', 'Ȥ', 'ȥ', 'ȴ', 'ȵ', 'ȶ', 'ȷ', 'ȸ', 'ȹ', 'Ⱥ', 'Ȼ', 'ȼ', 'Ƚ', 'Ⱦ', 'ȿ', 'ɀ', 'Ƀ', 'Ʉ', 'Ɇ', 'ɇ', 'Ɉ', 'ɉ', 'Ɍ', 'ɍ', 'Ɏ', 'ɏ', 'ɓ', 'ɕ', 'ɖ', 'ɗ', 'ɛ', 'ɟ', 'ɠ', 'ɡ', 'ɢ', 'ɦ', 'ɧ', 'ɨ', 'ɪ', 'ɫ', 'ɬ', 'ɭ', 'ɱ', 'ɲ', 'ɳ', 'ɴ', 'ɶ', 'ɼ', 'ɽ', 'ɾ', 'ʀ', 'ʂ', 'ʈ', 'ʉ', 'ʋ', 'ʏ', 'ʐ', 'ʑ', 'ʙ', 'ʛ', 'ʜ', 'ʝ', 'ʟ', 'ʠ', 'ʣ', 'ʥ', 'ʦ', 'ʪ', 'ʫ', 'ᴀ', 'ᴁ', 'ᴃ', 'ᴄ', 'ᴅ', 'ᴆ', 'ᴇ', 'ᴊ', 'ᴋ', 'ᴌ', 'ᴍ', 'ᴏ', 'ᴘ', 'ᴛ', 'ᴜ', 'ᴠ', 'ᴡ', 'ᴢ', 'ᵫ', 'ᵬ', 'ᵭ', 'ᵮ', 'ᵯ', 'ᵰ', 'ᵱ', 'ᵲ', 'ᵳ', 'ᵴ', 'ᵵ', 'ᵶ', 'ᵺ', 'ᵻ', 'ᵽ', 'ᵾ', 'ᶀ', 'ᶁ', 'ᶂ', 'ᶃ', 'ᶄ', 'ᶅ', 'ᶆ', 'ᶇ', 'ᶈ', 'ᶉ', 'ᶊ', 'ᶌ', 'ᶍ', 'ᶎ', 'ᶏ', 'ᶑ', 'ᶒ', 'ᶓ', 'ᶖ', 'ᶙ', 'ẚ', 'ẜ', 'ẝ', 'ẞ', 'Ỻ', 'ỻ', 'Ỽ', 'ỽ', 'Ỿ', 'ỿ', '©', '®', '₠', '₢', '₣', '₤', '₧', '₺', '₹', 'ℌ', '℞', '㎧', '㎮', '㏆', '㏗', '㏞', '㏟', '¼', '½', '¾', '⅓', '⅔', '⅕', '⅖', '⅗', '⅘', '⅙', '⅚', '⅛', '⅜', '⅝', '⅞', '⅟', '〇', '‘', '’', '‚', '‛', '“', '”', '„', '‟', '′', '″', '〝', '〞', '«', '»', '‹', '›', '‐', '‑', '‒', '–', '—', '―', '︱', '︲', '﹘', '‖', '⁄', '⁅', '⁆', '⁎', '、', '。', '〈', '〉', '《', '》', '〔', '〕', '〘', '〙', '〚', '〛', '︑', '︒', '︹', '︺', '︽', '︾', '︿', '﹀', '﹑', '﹝', '﹞', '⦅', '⦆', '。', '、', '×', '÷', '−', '∕', '∖', '∣', '∥', '≪', '≫', '⦅', '⦆'];
  38. private const TRANSLIT_TO = ['AE', 'D', 'O', 'TH', 'ss', 'ae', 'd', 'o', 'th', 'D', 'd', 'H', 'h', 'i', 'q', 'L', 'l', 'L', 'l', '\'n', 'N', 'n', 'OE', 'oe', 'T', 't', 'b', 'B', 'B', 'b', 'C', 'c', 'D', 'D', 'D', 'd', 'E', 'F', 'f', 'G', 'hv', 'I', 'I', 'K', 'k', 'l', 'N', 'n', 'OI', 'oi', 'P', 'p', 't', 'T', 't', 'T', 'V', 'Y', 'y', 'Z', 'z', 'DZ', 'Dz', 'dz', 'G', 'g', 'd', 'Z', 'z', 'l', 'n', 't', 'j', 'db', 'qp', 'A', 'C', 'c', 'L', 'T', 's', 'z', 'B', 'U', 'E', 'e', 'J', 'j', 'R', 'r', 'Y', 'y', 'b', 'c', 'd', 'd', 'e', 'j', 'g', 'g', 'G', 'h', 'h', 'i', 'I', 'l', 'l', 'l', 'm', 'n', 'n', 'N', 'OE', 'r', 'r', 'r', 'R', 's', 't', 'u', 'v', 'Y', 'z', 'z', 'B', 'G', 'H', 'j', 'L', 'q', 'dz', 'dz', 'ts', 'ls', 'lz', 'A', 'AE', 'B', 'C', 'D', 'D', 'E', 'J', 'K', 'L', 'M', 'O', 'P', 'T', 'U', 'V', 'W', 'Z', 'ue', 'b', 'd', 'f', 'm', 'n', 'p', 'r', 'r', 's', 't', 'z', 'th', 'I', 'p', 'U', 'b', 'd', 'f', 'g', 'k', 'l', 'm', 'n', 'p', 'r', 's', 'v', 'x', 'z', 'a', 'd', 'e', 'e', 'i', 'u', 'a', 's', 's', 'SS', 'LL', 'll', 'V', 'v', 'Y', 'y', '(C)', '(R)', 'CE', 'Cr', 'Fr.', 'L.', 'Pts', 'TL', 'Rs', 'x', 'Rx', 'm/s', 'rad/s', 'C/kg', 'pH', 'V/m', 'A/m', ' 1/4', ' 1/2', ' 3/4', ' 1/3', ' 2/3', ' 1/5', ' 2/5', ' 3/5', ' 4/5', ' 1/6', ' 5/6', ' 1/8', ' 3/8', ' 5/8', ' 7/8', ' 1/', '0', '\'', '\'', ',', '\'', '"', '"', ',,', '"', '\'', '"', '"', '"', '<<', '>>', '<', '>', '-', '-', '-', '-', '-', '-', '-', '-', '-', '||', '/', '[', ']', '*', ',', '.', '<', '>', '<<', '>>', '[', ']', '[', ']', '[', ']', ',', '.', '[', ']', '<<', '>>', '<', '>', ',', '[', ']', '((', '))', '.', ',', '*', '/', '-', '/', '\\', '|', '||', '<<', '>>', '((', '))'];
  39. private static array $transliterators = [];
  40. private static array $tableZero;
  41. private static array $tableWide;
  42. public static function fromCodePoints(int ...$codes): static
  43. {
  44. $string = '';
  45. foreach ($codes as $code) {
  46. if (0x80 > $code %= 0x200000) {
  47. $string .= \chr($code);
  48. } elseif (0x800 > $code) {
  49. $string .= \chr(0xC0 | $code >> 6).\chr(0x80 | $code & 0x3F);
  50. } elseif (0x10000 > $code) {
  51. $string .= \chr(0xE0 | $code >> 12).\chr(0x80 | $code >> 6 & 0x3F).\chr(0x80 | $code & 0x3F);
  52. } else {
  53. $string .= \chr(0xF0 | $code >> 18).\chr(0x80 | $code >> 12 & 0x3F).\chr(0x80 | $code >> 6 & 0x3F).\chr(0x80 | $code & 0x3F);
  54. }
  55. }
  56. return new static($string);
  57. }
  58. /**
  59. * Generic UTF-8 to ASCII transliteration.
  60. *
  61. * Install the intl extension for best results.
  62. *
  63. * @param string[]|\Transliterator[]|\Closure[] $rules See "*-Latin" rules from Transliterator::listIDs()
  64. */
  65. public function ascii(array $rules = []): self
  66. {
  67. $str = clone $this;
  68. $s = $str->string;
  69. $str->string = '';
  70. array_unshift($rules, 'nfd');
  71. $rules[] = 'latin-ascii';
  72. if (\function_exists('transliterator_transliterate')) {
  73. $rules[] = 'any-latin/bgn';
  74. }
  75. $rules[] = 'nfkd';
  76. $rules[] = '[:nonspacing mark:] remove';
  77. while (\strlen($s) - 1 > $i = strspn($s, self::ASCII)) {
  78. if (0 < --$i) {
  79. $str->string .= substr($s, 0, $i);
  80. $s = substr($s, $i);
  81. }
  82. if (!$rule = array_shift($rules)) {
  83. $rules = []; // An empty rule interrupts the next ones
  84. }
  85. if ($rule instanceof \Transliterator) {
  86. $s = $rule->transliterate($s);
  87. } elseif ($rule instanceof \Closure) {
  88. $s = $rule($s);
  89. } elseif ($rule) {
  90. if ('nfd' === $rule = strtolower($rule)) {
  91. normalizer_is_normalized($s, self::NFD) ?: $s = normalizer_normalize($s, self::NFD);
  92. } elseif ('nfkd' === $rule) {
  93. normalizer_is_normalized($s, self::NFKD) ?: $s = normalizer_normalize($s, self::NFKD);
  94. } elseif ('[:nonspacing mark:] remove' === $rule) {
  95. $s = preg_replace('/\p{Mn}++/u', '', $s);
  96. } elseif ('latin-ascii' === $rule) {
  97. $s = str_replace(self::TRANSLIT_FROM, self::TRANSLIT_TO, $s);
  98. } elseif ('de-ascii' === $rule) {
  99. $s = preg_replace("/([AUO])\u{0308}(?=\p{Ll})/u", '$1e', $s);
  100. $s = str_replace(["a\u{0308}", "o\u{0308}", "u\u{0308}", "A\u{0308}", "O\u{0308}", "U\u{0308}"], ['ae', 'oe', 'ue', 'AE', 'OE', 'UE'], $s);
  101. } elseif (\function_exists('transliterator_transliterate')) {
  102. if (null === $transliterator = self::$transliterators[$rule] ??= \Transliterator::create($rule)) {
  103. if ('any-latin/bgn' === $rule) {
  104. $rule = 'any-latin';
  105. $transliterator = self::$transliterators[$rule] ??= \Transliterator::create($rule);
  106. }
  107. if (null === $transliterator) {
  108. throw new InvalidArgumentException(sprintf('Unknown transliteration rule "%s".', $rule));
  109. }
  110. self::$transliterators['any-latin/bgn'] = $transliterator;
  111. }
  112. $s = $transliterator->transliterate($s);
  113. }
  114. } elseif (!\function_exists('iconv')) {
  115. $s = preg_replace('/[^\x00-\x7F]/u', '?', $s);
  116. } else {
  117. $s = @preg_replace_callback('/[^\x00-\x7F]/u', static function ($c) {
  118. $c = (string) iconv('UTF-8', 'ASCII//TRANSLIT', $c[0]);
  119. if ('' === $c && '' === iconv('UTF-8', 'ASCII//TRANSLIT', '²')) {
  120. throw new \LogicException(sprintf('"%s" requires a translit-able iconv implementation, try installing "gnu-libiconv" if you\'re using Alpine Linux.', static::class));
  121. }
  122. return 1 < \strlen($c) ? ltrim($c, '\'`"^~') : ('' !== $c ? $c : '?');
  123. }, $s);
  124. }
  125. }
  126. $str->string .= $s;
  127. return $str;
  128. }
  129. public function camel(): static
  130. {
  131. $str = clone $this;
  132. $str->string = str_replace(' ', '', preg_replace_callback('/\b.(?![A-Z]{2,})/u', static function ($m) {
  133. static $i = 0;
  134. return 1 === ++$i ? ('İ' === $m[0] ? 'i̇' : mb_strtolower($m[0], 'UTF-8')) : mb_convert_case($m[0], \MB_CASE_TITLE, 'UTF-8');
  135. }, preg_replace('/[^\pL0-9]++/u', ' ', $this->string)));
  136. return $str;
  137. }
  138. /**
  139. * @return int[]
  140. */
  141. public function codePointsAt(int $offset): array
  142. {
  143. $str = $this->slice($offset, 1);
  144. if ('' === $str->string) {
  145. return [];
  146. }
  147. $codePoints = [];
  148. foreach (preg_split('//u', $str->string, -1, \PREG_SPLIT_NO_EMPTY) as $c) {
  149. $codePoints[] = mb_ord($c, 'UTF-8');
  150. }
  151. return $codePoints;
  152. }
  153. public function folded(bool $compat = true): static
  154. {
  155. $str = clone $this;
  156. if (!$compat || !\defined('Normalizer::NFKC_CF')) {
  157. $str->string = normalizer_normalize($str->string, $compat ? \Normalizer::NFKC : \Normalizer::NFC);
  158. $str->string = mb_strtolower(str_replace(self::FOLD_FROM, self::FOLD_TO, $str->string), 'UTF-8');
  159. } else {
  160. $str->string = normalizer_normalize($str->string, \Normalizer::NFKC_CF);
  161. }
  162. return $str;
  163. }
  164. public function join(array $strings, ?string $lastGlue = null): static
  165. {
  166. $str = clone $this;
  167. $tail = null !== $lastGlue && 1 < \count($strings) ? $lastGlue.array_pop($strings) : '';
  168. $str->string = implode($this->string, $strings).$tail;
  169. if (!preg_match('//u', $str->string)) {
  170. throw new InvalidArgumentException('Invalid UTF-8 string.');
  171. }
  172. return $str;
  173. }
  174. public function lower(): static
  175. {
  176. $str = clone $this;
  177. $str->string = mb_strtolower(str_replace('İ', 'i̇', $str->string), 'UTF-8');
  178. return $str;
  179. }
  180. public function match(string $regexp, int $flags = 0, int $offset = 0): array
  181. {
  182. $match = ((\PREG_PATTERN_ORDER | \PREG_SET_ORDER) & $flags) ? 'preg_match_all' : 'preg_match';
  183. if ($this->ignoreCase) {
  184. $regexp .= 'i';
  185. }
  186. set_error_handler(static fn ($t, $m) => throw new InvalidArgumentException($m));
  187. try {
  188. if (false === $match($regexp.'u', $this->string, $matches, $flags | \PREG_UNMATCHED_AS_NULL, $offset)) {
  189. throw new RuntimeException('Matching failed with error: '.preg_last_error_msg());
  190. }
  191. } finally {
  192. restore_error_handler();
  193. }
  194. return $matches;
  195. }
  196. public function normalize(int $form = self::NFC): static
  197. {
  198. if (!\in_array($form, [self::NFC, self::NFD, self::NFKC, self::NFKD])) {
  199. throw new InvalidArgumentException('Unsupported normalization form.');
  200. }
  201. $str = clone $this;
  202. normalizer_is_normalized($str->string, $form) ?: $str->string = normalizer_normalize($str->string, $form);
  203. return $str;
  204. }
  205. public function padBoth(int $length, string $padStr = ' '): static
  206. {
  207. if ('' === $padStr || !preg_match('//u', $padStr)) {
  208. throw new InvalidArgumentException('Invalid UTF-8 string.');
  209. }
  210. $pad = clone $this;
  211. $pad->string = $padStr;
  212. return $this->pad($length, $pad, \STR_PAD_BOTH);
  213. }
  214. public function padEnd(int $length, string $padStr = ' '): static
  215. {
  216. if ('' === $padStr || !preg_match('//u', $padStr)) {
  217. throw new InvalidArgumentException('Invalid UTF-8 string.');
  218. }
  219. $pad = clone $this;
  220. $pad->string = $padStr;
  221. return $this->pad($length, $pad, \STR_PAD_RIGHT);
  222. }
  223. public function padStart(int $length, string $padStr = ' '): static
  224. {
  225. if ('' === $padStr || !preg_match('//u', $padStr)) {
  226. throw new InvalidArgumentException('Invalid UTF-8 string.');
  227. }
  228. $pad = clone $this;
  229. $pad->string = $padStr;
  230. return $this->pad($length, $pad, \STR_PAD_LEFT);
  231. }
  232. public function replaceMatches(string $fromRegexp, string|callable $to): static
  233. {
  234. if ($this->ignoreCase) {
  235. $fromRegexp .= 'i';
  236. }
  237. if (\is_array($to) || $to instanceof \Closure) {
  238. $replace = 'preg_replace_callback';
  239. $to = static function (array $m) use ($to): string {
  240. $to = $to($m);
  241. if ('' !== $to && (!\is_string($to) || !preg_match('//u', $to))) {
  242. throw new InvalidArgumentException('Replace callback must return a valid UTF-8 string.');
  243. }
  244. return $to;
  245. };
  246. } elseif ('' !== $to && !preg_match('//u', $to)) {
  247. throw new InvalidArgumentException('Invalid UTF-8 string.');
  248. } else {
  249. $replace = 'preg_replace';
  250. }
  251. set_error_handler(static fn ($t, $m) => throw new InvalidArgumentException($m));
  252. try {
  253. if (null === $string = $replace($fromRegexp.'u', $to, $this->string)) {
  254. $lastError = preg_last_error();
  255. foreach (get_defined_constants(true)['pcre'] as $k => $v) {
  256. if ($lastError === $v && str_ends_with($k, '_ERROR')) {
  257. throw new RuntimeException('Matching failed with '.$k.'.');
  258. }
  259. }
  260. throw new RuntimeException('Matching failed with unknown error code.');
  261. }
  262. } finally {
  263. restore_error_handler();
  264. }
  265. $str = clone $this;
  266. $str->string = $string;
  267. return $str;
  268. }
  269. public function reverse(): static
  270. {
  271. $str = clone $this;
  272. $str->string = implode('', array_reverse(preg_split('/(\X)/u', $str->string, -1, \PREG_SPLIT_DELIM_CAPTURE | \PREG_SPLIT_NO_EMPTY)));
  273. return $str;
  274. }
  275. public function snake(): static
  276. {
  277. $str = $this->camel();
  278. $str->string = mb_strtolower(preg_replace(['/(\p{Lu}+)(\p{Lu}\p{Ll})/u', '/([\p{Ll}0-9])(\p{Lu})/u'], '\1_\2', $str->string), 'UTF-8');
  279. return $str;
  280. }
  281. public function title(bool $allWords = false): static
  282. {
  283. $str = clone $this;
  284. $limit = $allWords ? -1 : 1;
  285. $str->string = preg_replace_callback('/\b./u', static fn (array $m): string => mb_convert_case($m[0], \MB_CASE_TITLE, 'UTF-8'), $str->string, $limit);
  286. return $str;
  287. }
  288. public function trim(string $chars = " \t\n\r\0\x0B\x0C\u{A0}\u{FEFF}"): static
  289. {
  290. if (" \t\n\r\0\x0B\x0C\u{A0}\u{FEFF}" !== $chars && !preg_match('//u', $chars)) {
  291. throw new InvalidArgumentException('Invalid UTF-8 chars.');
  292. }
  293. $chars = preg_quote($chars);
  294. $str = clone $this;
  295. $str->string = preg_replace("{^[$chars]++|[$chars]++$}uD", '', $str->string);
  296. return $str;
  297. }
  298. public function trimEnd(string $chars = " \t\n\r\0\x0B\x0C\u{A0}\u{FEFF}"): static
  299. {
  300. if (" \t\n\r\0\x0B\x0C\u{A0}\u{FEFF}" !== $chars && !preg_match('//u', $chars)) {
  301. throw new InvalidArgumentException('Invalid UTF-8 chars.');
  302. }
  303. $chars = preg_quote($chars);
  304. $str = clone $this;
  305. $str->string = preg_replace("{[$chars]++$}uD", '', $str->string);
  306. return $str;
  307. }
  308. public function trimPrefix($prefix): static
  309. {
  310. if (!$this->ignoreCase) {
  311. return parent::trimPrefix($prefix);
  312. }
  313. $str = clone $this;
  314. if ($prefix instanceof \Traversable) {
  315. $prefix = iterator_to_array($prefix, false);
  316. } elseif ($prefix instanceof parent) {
  317. $prefix = $prefix->string;
  318. }
  319. $prefix = implode('|', array_map('preg_quote', (array) $prefix));
  320. $str->string = preg_replace("{^(?:$prefix)}iuD", '', $this->string);
  321. return $str;
  322. }
  323. public function trimStart(string $chars = " \t\n\r\0\x0B\x0C\u{A0}\u{FEFF}"): static
  324. {
  325. if (" \t\n\r\0\x0B\x0C\u{A0}\u{FEFF}" !== $chars && !preg_match('//u', $chars)) {
  326. throw new InvalidArgumentException('Invalid UTF-8 chars.');
  327. }
  328. $chars = preg_quote($chars);
  329. $str = clone $this;
  330. $str->string = preg_replace("{^[$chars]++}uD", '', $str->string);
  331. return $str;
  332. }
  333. public function trimSuffix($suffix): static
  334. {
  335. if (!$this->ignoreCase) {
  336. return parent::trimSuffix($suffix);
  337. }
  338. $str = clone $this;
  339. if ($suffix instanceof \Traversable) {
  340. $suffix = iterator_to_array($suffix, false);
  341. } elseif ($suffix instanceof parent) {
  342. $suffix = $suffix->string;
  343. }
  344. $suffix = implode('|', array_map('preg_quote', (array) $suffix));
  345. $str->string = preg_replace("{(?:$suffix)$}iuD", '', $this->string);
  346. return $str;
  347. }
  348. public function upper(): static
  349. {
  350. $str = clone $this;
  351. $str->string = mb_strtoupper($str->string, 'UTF-8');
  352. return $str;
  353. }
  354. public function width(bool $ignoreAnsiDecoration = true): int
  355. {
  356. $width = 0;
  357. $s = str_replace(["\x00", "\x05", "\x07"], '', $this->string);
  358. if (str_contains($s, "\r")) {
  359. $s = str_replace(["\r\n", "\r"], "\n", $s);
  360. }
  361. if (!$ignoreAnsiDecoration) {
  362. $s = preg_replace('/[\p{Cc}\x7F]++/u', '', $s);
  363. }
  364. foreach (explode("\n", $s) as $s) {
  365. if ($ignoreAnsiDecoration) {
  366. $s = preg_replace('/(?:\x1B(?:
  367. \[ [\x30-\x3F]*+ [\x20-\x2F]*+ [\x40-\x7E]
  368. | [P\]X^_] .*? \x1B\\\\
  369. | [\x41-\x7E]
  370. )|[\p{Cc}\x7F]++)/xu', '', $s);
  371. }
  372. $lineWidth = $this->wcswidth($s);
  373. if ($lineWidth > $width) {
  374. $width = $lineWidth;
  375. }
  376. }
  377. return $width;
  378. }
  379. private function pad(int $len, self $pad, int $type): static
  380. {
  381. $sLen = $this->length();
  382. if ($len <= $sLen) {
  383. return clone $this;
  384. }
  385. $padLen = $pad->length();
  386. $freeLen = $len - $sLen;
  387. $len = $freeLen % $padLen;
  388. switch ($type) {
  389. case \STR_PAD_RIGHT:
  390. return $this->append(str_repeat($pad->string, intdiv($freeLen, $padLen)).($len ? $pad->slice(0, $len) : ''));
  391. case \STR_PAD_LEFT:
  392. return $this->prepend(str_repeat($pad->string, intdiv($freeLen, $padLen)).($len ? $pad->slice(0, $len) : ''));
  393. case \STR_PAD_BOTH:
  394. $freeLen /= 2;
  395. $rightLen = ceil($freeLen);
  396. $len = $rightLen % $padLen;
  397. $str = $this->append(str_repeat($pad->string, intdiv($rightLen, $padLen)).($len ? $pad->slice(0, $len) : ''));
  398. $leftLen = floor($freeLen);
  399. $len = $leftLen % $padLen;
  400. return $str->prepend(str_repeat($pad->string, intdiv($leftLen, $padLen)).($len ? $pad->slice(0, $len) : ''));
  401. default:
  402. throw new InvalidArgumentException('Invalid padding type.');
  403. }
  404. }
  405. /**
  406. * Based on https://github.com/jquast/wcwidth, a Python implementation of https://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c.
  407. */
  408. private function wcswidth(string $string): int
  409. {
  410. $width = 0;
  411. foreach (preg_split('//u', $string, -1, \PREG_SPLIT_NO_EMPTY) as $c) {
  412. $codePoint = mb_ord($c, 'UTF-8');
  413. if (0 === $codePoint // NULL
  414. || 0x034F === $codePoint // COMBINING GRAPHEME JOINER
  415. || (0x200B <= $codePoint && 0x200F >= $codePoint) // ZERO WIDTH SPACE to RIGHT-TO-LEFT MARK
  416. || 0x2028 === $codePoint // LINE SEPARATOR
  417. || 0x2029 === $codePoint // PARAGRAPH SEPARATOR
  418. || (0x202A <= $codePoint && 0x202E >= $codePoint) // LEFT-TO-RIGHT EMBEDDING to RIGHT-TO-LEFT OVERRIDE
  419. || (0x2060 <= $codePoint && 0x2063 >= $codePoint) // WORD JOINER to INVISIBLE SEPARATOR
  420. ) {
  421. continue;
  422. }
  423. // Non printable characters
  424. if (32 > $codePoint // C0 control characters
  425. || (0x07F <= $codePoint && 0x0A0 > $codePoint) // C1 control characters and DEL
  426. ) {
  427. return -1;
  428. }
  429. self::$tableZero ??= require __DIR__.'/Resources/data/wcswidth_table_zero.php';
  430. if ($codePoint >= self::$tableZero[0][0] && $codePoint <= self::$tableZero[$ubound = \count(self::$tableZero) - 1][1]) {
  431. $lbound = 0;
  432. while ($ubound >= $lbound) {
  433. $mid = floor(($lbound + $ubound) / 2);
  434. if ($codePoint > self::$tableZero[$mid][1]) {
  435. $lbound = $mid + 1;
  436. } elseif ($codePoint < self::$tableZero[$mid][0]) {
  437. $ubound = $mid - 1;
  438. } else {
  439. continue 2;
  440. }
  441. }
  442. }
  443. self::$tableWide ??= require __DIR__.'/Resources/data/wcswidth_table_wide.php';
  444. if ($codePoint >= self::$tableWide[0][0] && $codePoint <= self::$tableWide[$ubound = \count(self::$tableWide) - 1][1]) {
  445. $lbound = 0;
  446. while ($ubound >= $lbound) {
  447. $mid = floor(($lbound + $ubound) / 2);
  448. if ($codePoint > self::$tableWide[$mid][1]) {
  449. $lbound = $mid + 1;
  450. } elseif ($codePoint < self::$tableWide[$mid][0]) {
  451. $ubound = $mid - 1;
  452. } else {
  453. $width += 2;
  454. continue 2;
  455. }
  456. }
  457. }
  458. ++$width;
  459. }
  460. return $width;
  461. }
  462. }