File: tip34.html

package info (click to toggle)
jedit 4.5.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 12,252 kB
  • sloc: java: 90,581; xml: 88,372; makefile: 55; sh: 25
file content (22 lines) | stat: -rw-r--r-- 532 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html><body>

You can replace all occurrences of a specific string or regular
expression with the return value of a BeanShell script if the
<b>Return value of a BeanShell
snippet</b> radio button is selected in the search dialog box.<p>

You can use
this, for example, to convert all tags in an HTML file to lower case, by
searching for the following regular expression:

<p>
<code>&lt;(.+?)&gt;</code>

<p>

And entering the following in the replace text field:

<p>
<code>"&lt;" + _1.toLowerCase() + "&gt;"</code>

</body></html>