How do I match japanese characters using IDN regex?
Based on this post link text
i came up with a regex for javascript
\b(([\w-]+:\/\/?|[\w\d]+[.])?[^\s()<>]+[.](?:\([\w\d]+\)|([^`!()\[\]{};:'".,<>?«»“”‘’\s]|\/)))
this one matches urls like
http://google.comhttp://www.google.comgoogle.com
It fails for google, but when I used japanese characters like 功功.jp it fails.
www.功功.jp开发者_运维百科http://www.功功.jphttp://功功.jp
These match. What should I change so that 功功.jp also matches.
Very slight modification made here has it working for me:
/(([\w-]+:\/\/?|[\w\d]+[.])?[^\s()<>]+[.](?:\([\w\d]+\)|([^`!()\[\]{};:'\".,<>?«»“”‘’\s]|\/)+))/
加载中,请稍侯......
精彩评论