js as
下的
new RegExp(/<\w*>/ig)
var p="<head>" g= new RegExp(/<\w*>/ig) // 取<head> g= new RegExp(/<(\w*)>/ig) // 取head
c#
new RegExp(@"<\w*>")