需要以下帮助。
在javascript中,需要传递一个输入
例如:
str="<a href=www.google.com>Google</a>"; // this is for example actual input vary
// str is passed as parameter for javascript function
输出应检索为“Google”。
我在java中有正则表达式,它在其中运行良好。
String regex = "< a [ ^ > ] * > ( . * ? ) < / a > ";
Pattern p = Pattern.compile(regex, Pattern.DOTALL | Pattern.CASE_INSENSITIVE);
但在javascript中它不起作用。
我怎么能在Javascript中做到这一点。任何人都可以为我提供有关 javascript 实施的帮助。