| Summary: | Feature Request: Enable Multiple String Search in Search and Replace Plug-in | ||
|---|---|---|---|
| Product: | [Applications] kate | Reporter: | Sabri Ünal <libreajans> |
| Component: | search | Assignee: | KWrite Developers <kwrite-bugs-null> |
| Status: | REOPENED --- | ||
| Severity: | wishlist | CC: | kare.sars, waqar.17a |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Other | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Sabri Ünal
2023-04-13 04:01:19 UTC
In Search&Replace, there's a button to filter through search results. So you can do something like: - search for "abc" - results are displayed - On the right side in the interface there is a filter button (hover over the button to see its tooltip) - click the button => search line appears at the bottom - Filter through the results using the search at the bottom Hi Ahmed, I know the filter action but it works differently. You may think like a SQL query. SELECT * FROM content` WHERE text LIKE "%flip%" and text like "%çevir%"; SELECT * FROM content` WHERE text LIKE "%flip%" and text not like "%çevir%"; If you think there is no use case for it, you can close the issue again. Thanks. Hi, I was going to say that this is a prime example for regular-expressions, but when trying to construct such, I notice a problem. ^ is beginning of line and $ is end of line and there is currently no way to specify a regular expression that specifies start of document and end of document. So in short is it a bit hard to get a regular expression the excludes a word from the whole document. I was first thinking that \^ and \$ could be used for that, but that is needed for actual ^ and $. Ideas are well come. An ugly workaround would be to add an option to treat the whole document as one long string, in which case ^ would be start of document and $ end of document... |