Menu

#2057 RFE for online help

closed-fixed
nobody
5
2004-04-19
2004-03-25
Skeeve
No

The help for search & replace says:

To convert all HTML tags to lower case, search for the
following regular expression:
<(.*?)>
Replacing it with the following BeanShell snippet:
"<" + _1.toLowerCase() + ">"

That was exactly what I was searching for. But it's
limited as it will also lower all parameters and no
split-tag then one line (or would it?).

However. I recommend to change the text to:

To convert all HTML tags to lower case, search for the
following regular expression:
<\S+
Replacing it with the following BeanShell snippet:
_0.toLowerCase()

This will change just the tag names.

Discussion

  • Slava Pestov

    Slava Pestov - 2004-04-19
    • status: open --> closed-fixed
     
  • Slava Pestov

    Slava Pestov - 2004-04-19

    Logged In: YES
    user_id=2280

    Thanks for the hint

     

Log in to post a comment.