2

我目前正在翻译一个大数据集(大约 7000 行)。该数据集包含英语短语和 HTML 标签,已使用谷歌翻译翻译成荷兰语。

但是,在查看生成的翻译时,谷歌翻译还通过添加空格来打乱 HTML 标签。我想删除翻译文件中 HTML 标记内的所有无效空格。例如:

this is a test. < a href = "hello.php" >test</ a>;

应该变成:

this is a test. <a href="hello.php">test</a>;

有没有可以使这成为可能的正则表达式?

4

1 回答 1

1
$text = str_replace("< ", "<", $text);
$text = str_replace("> ", ">", $text);
$text = str_replace(" <", "<", $text);
$text = str_replace(" >", ">", $text);
$text = str_replace("= ", "=", $text);
$text = str_replace(" =", "=", $text);
$text = str_replace("\/ ", "\/", $text);
于 2012-05-08T13:04:16.687 回答