-
-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathStringUtil.php
More file actions
61 lines (53 loc) · 1.49 KB
/
StringUtil.php
File metadata and controls
61 lines (53 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Form\Util;
/**
* @author Issei Murasawa <[email protected]>
* @author Bernhard Schussek <[email protected]>
*/
class StringUtil
{
/**
* This class should not be instantiated.
*/
private function __construct()
{
}
/**
* Returns the trimmed data.
*/
public static function trim(string $string): string
{
if (null !== $result = @preg_replace('/^[\pZ\p{Cc}\p{Cf}]+|[\pZ\p{Cc}\p{Cf}]+$/u', '', $string)) {
return $result;
}
return trim($string);
}
/**
* Converts both CRLF and CR to LF.
*/
public static function normalizeNewlines(string $string): string
{
return str_replace(["\r\n", "\r"], "\n", $string);
}
/**
* Converts a fully-qualified class name to a block prefix.
*
* @param string $fqcn The fully-qualified class name
*/
public static function fqcnToBlockPrefix(string $fqcn): ?string
{
// Non-greedy ("+?") to match "type" suffix, if present
if (preg_match('~([^\\\\]+?)(type)?$~i', $fqcn, $matches)) {
return strtolower(preg_replace(['/([A-Z]+)([A-Z][a-z])/', '/([a-z\d])([A-Z])/'], ['\\1_\\2', '\\1_\\2'], $matches[1]));
}
return null;
}
}