开始之前..我是非常新的PHP ...希望你能忍受我这个。
我有一个文件(类型.docx)的句子,我会在有句号的地方分割。
我使用的代码是:
$docObj = new Filetotext($fileToTest);
$docextracted = $docObj->extractText();
// pattern to find the fullstop
$pattern = '/\./';
//giving a new line to each sentence
$current1= preg_replace($pattern, "\r\n", $docextracted);
$splitArray = explode("\n", $current1);
//$mainFile = $splitArray;
$mainFile = (str_replace(' ', '', $splitArray));
print_r($mainFile);
该文件实际上包含以下内容:(仅用于示例目的)
This is a test file. The purpose of this test file is to ensure that the file reading part is working. This test is important. This test ends here.
但是当print_r($mainFile);
给出以下内容时:
Array
(
[0] =>
[1] => Thisisatestfile
[2] => Thepurposeofthistestfileistoensurethatthefilereadingpartisworking
[3] => Thistestisimportant
[4] => Thistestendshere
[5] =>
)
第一个和最后一个数组索引中的空白部分(忘记了它的单词)是个问题。我试过其他文件和同样的事情。第一个和最后一个索引为空。当我试图在此处设置计数器时,或者当我试图将数组与其他数组进行比较时,这会导致问题。
我的代码是否有任何问题导致空白部分?
非常感谢任何形式的帮助:)
答案 0 :(得分:1)
在$ current1上修剪以删除之前和之后的空格,在explode()之前,应该这样做。
....
$current1 = trim($current1);
$splitArray = explode("\n", $current1);
....