删除 HTML 特殊字符
我如何从PHP字符串中删除“
,”
,°
之类的特殊字符
实际上我需要从文本文件中读取内容并需要从中删除除字母和数字之外的html特殊字符
How do i remove “
, ”
, °
like special characters from a string in PHP
Actually i need to read the contents from a text file and need to remove the html special characters except the alphabets and digits from it
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
或者,如果您想使用正则表达式,请使用:
Or, if you want to use a RegEx, use:
一种方法是(例如)
One way would be (eg)
根据编辑 - 要读取文件内容,删除除字母数字和空格字符之外的所有内容,然后将结果写入同一文件,您可以使用:
Per the edit- to read the file contents, remove everything except alphanumerics and space characters then write the result to the same file, you can use: