This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/String
Nicolas Grekas 605a5674a8 Merge branch '5.1' into 5.x
* 5.1:
  fix merge
  fix merge
  Remove branch-version (keep them for contracts only)
  [HttpClient] relax auth bearer format requirements
  [PHPUnitBridge] Silence errors from mkdir()
  [DependencyInjection] Preload classes with union types correctly.
  [Serializer] fix decoding float XML attributes starting with 0
  add missing dutch translations
  [TwigBridge] Remove "transchoice" from the code base
  Support PHPUnit 8 and PHPUnit 9 in constraint compatibility trait
  Add expectDeprecation, expectNotice, expectWarning, and expectError to TestCase polyfill
  [String] fix before/after[Last]() returning the empty string instead of the original one on non-match
  Add missing exporter function for PHPUnit 7
  [Validator] Add missing romanian translations
  [String] fix slicing in UnicodeString
  [Cache] Use correct expiry in ChainAdapter
  do not translate null placeholders or titles
2020-10-24 14:08:07 +02:00
..
Exception [String] Remove the @experimental status 2020-02-06 17:58:08 +01:00
Inflector Fix CS 2020-08-17 10:48:15 +02:00
Resources [String] allow passing null to string functions 2020-09-24 11:57:23 +02:00
Slugger [String][AsciiSlugger] Fix typo 2020-10-06 19:37:38 +02:00
Tests Merge branch '5.1' into 5.x 2020-10-24 14:08:07 +02:00
.gitattributes [String] Made AbstractString::width() follow POSIX.1-2001 2020-01-23 11:37:52 +01:00
.gitignore
AbstractString.php [String] fix before/after[Last]() returning the empty string instead of the original one on non-match 2020-10-22 14:08:44 +02:00
AbstractUnicodeString.php Merge branch '5.1' 2020-09-17 09:22:48 +02:00
ByteString.php Merge branch '5.1' 2020-09-02 18:27:44 +02:00
CHANGELOG.md Added a FrenchInflector for the String component 2020-06-27 22:18:36 +02:00
CodePointString.php Merge branch '4.4' into 5.1 2020-09-02 18:23:27 +02:00
composer.json Merge branch '4.4' into 5.1 2020-10-24 14:01:57 +02:00
LazyString.php Merge branch '4.4' into 5.1 2020-09-02 18:23:27 +02:00
LICENSE Update year in license files 2020-01-01 15:53:07 +01:00
phpunit.xml.dist
README.md [String] Remove the @experimental status 2020-02-06 17:58:08 +01:00
UnicodeString.php [String] fix slicing in UnicodeString 2020-10-21 15:57:40 +02:00

String Component

The String component provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way.

Resources