File: tip34.html

package info (click to toggle)
jedit 4.3.2%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 12,288 kB
  • ctags: 10,215
  • sloc: java: 88,754; xml: 81,655; makefile: 53; sh: 26
file content (22 lines) | stat: -rw-r--r-- 554 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>