xref: /plugin/dw2pdf/vendor/mpdf/mpdf/src/Utils/NumericString.php (revision dc4d9dc689082c963d5c1d9ee679553326788c6e)
1<?php
2
3namespace Mpdf\Utils;
4
5class NumericString
6{
7
8	public static function containsPercentChar($string)
9	{
10		return strstr($string, '%');
11	}
12
13	public static function removePercentChar($string)
14	{
15		return str_replace('%', '', $string);
16	}
17
18}
19