我正在使用Ionicframework中的聊天应用程序,我正在通过套接字成功发送和接收文本。有一件事让我烦恼: -
How can i find out if a message contains some external weblink e-g https://google.com etc...
我的意思是像Whatsapp这样的其他聊天应用如何过滤掉消息中的外部链接。
我不知道该怎么做。我正在考虑关注
使用space
拆分消息中的每个单词,然后循环遍历每个字符串,以确定是以https://
还是http://
开头。
我不确定它是否是更好的方法。
请指导我如何操作,或者我可以使用任何NPM库吗?
提前致谢:)