我正在尝试将大写的 html 属性转换为小写,以使我的文档符合 XHTML 1.0 ADA 合规标准。
但我无法获得所需的输出。以下是我用来执行此操作的代码片段。请帮助我。
private static String LowerCaseAttributes(String htmlfile){
String[] attributes = new String[] {
"border-bottom", "margin", "padding","bgcolor","width", "border",
"style", "alt", "title", "for", "col", "header", "clear",
"colspan", "rows", "cols", "type", "name", "id", "target", "method"
};
for(String s1 : attributes){
htmlfile = htmlfile.replace(s1.toUpperCase() + "=", s1 + "=");
}
return htmlfile;
}