正则表达式:如何更改/替换 html TAG 内容的小写和大写字母:

正则表达式:如何更改/替换 html TAG 内容的小写和大写字母:

我想将小写和大写字母更改/替换为 html 标签

<meta name="keywords" content="Mother's, Sacrifice"/>

答案1

搜索:(?:\G(?!^)|<meta name="keywords" content=)\s*\K([^<\s])([^<\s]*)

替换为: \L$1$2\L$1\L$2

应该成为

<meta name="keywords" content="mothers's, sacrifice"/>

搜索:(?:\G(?!^)|<meta name="keywords" content=)\s*\K([^<\s])([^<\s]*)

替换为: \U$1\U$2\U$1$2

应该成为

  `<meta name="keywords" content="MOTHER'S, SACRIFICE"/>`

相关内容