这是一个 PHP 示例(请参阅实际操作):
<?php
$string = '<p>
</p>
<table align="center" border="0" cellpadding="3" cellspacing="0" class="normalword" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color: rgb(0, 0, 0);" width="95%">
<tbody>
<tr>
<td>
<table align="center" border="0" bordercolor="#666666" cellpadding="3" cellspacing="0" class="normalword" width="100%">
<tbody>
<tr>
<td>
<div align="justify">
Responsibilities: <br />
<br />
1) Handle outbound telesales campaigns for consumer markets (for CallMark clients) by utilizing effective presentation and creating positive relationship for all customer contacts with the aim to cross/up selling client’s product and services. <br />
';
function firstXChars($string, $chars = 100)
{
$string = trim(strip_tags($string));
$string = str_replace(array("\n", "\r"), '', $string);
preg_match('/^.{0,' . $chars. '}(?:.*?)\b/iu', $string, $matches);
return $matches[0];
}
echo firstXChars($string);