This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 181168 - Suggestion for different semantics for regexp ^
Summary: Suggestion for different semantics for regexp ^
Status: RESOLVED DUPLICATE of bug 73615
Alias: None
Product: editor
Classification: Unclassified
Component: Search (show other bugs)
Version: 6.x
Hardware: PC Other
: P2 normal (vote)
Assignee: Milutin Kristofic
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-02-24 12:25 UTC by jsprenkle
Modified: 2011-07-08 14:31 UTC (History)
1 user (show)

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments
text being edited using RE (371 bytes, application/octet-stream)
2010-09-16 04:51 UTC, pbw
Details
result of edit on text1 (400 bytes, application/octet-stream)
2010-09-16 04:53 UTC, pbw
Details

Note You need to log in before you can comment on or make changes to this bug.
Description jsprenkle 2010-02-24 12:25:06 UTC
How to reproduce:

Open file.
Select multiple lines of text.
hit Ctrl-h to begin the search and replace operation
ensure regular expression check box is set
enter beginning of line character as pattern  ( "^" )
enter any text to be inserted at begging of each line.
Hit 'replace all' button.

Current behavior:

Nothing is found.

Expected behavior:

Entered text is inserted at the beginning of all selected lines.
Comment 1 Vitezslav Stejskal 2010-03-04 04:00:20 UTC
Umm, I'm not sure if regex can be used this way. Anyway, this is not a big deal.
Comment 2 pbw 2010-09-16 04:51:26 UTC
Created attachment 102039 [details]
text being edited using RE
Comment 3 pbw 2010-09-16 04:53:17 UTC
Created attachment 102040 [details]
result of edit on text1
Comment 4 pbw 2010-09-16 04:56:24 UTC
This IS a big deal, and REs ARE used in that way. Try it in vim; try it in perl.

But wait, there's more. Try find/replace using REs on the text in attachment text1. Use
Find:^(.)
Replace:#$1

or 

Find:(^.)

You get the result in text2.
Comment 5 pbw 2010-09-16 11:48:31 UTC
Regular expression replace of '^' with some text, e.g. '#' works in JEdit as well.  I guess JEdit is using the Java regular expression handlers.
Comment 6 Milutin Kristofic 2011-07-08 14:31:26 UTC

*** This bug has been marked as a duplicate of bug 73615 ***