Hi, :-) In Microsoft Office, when you do a find/replace, you have a dropdown list enabling you to easily include many special characters to search for, such as - carriage return - new line - tab mark - page break - non-breaking spaces - and various others. In LibO, I think you can only do this via regular expressions. But your average user is incapable of using regular expressions. Could you possibly add a similar dropdown box? Thanks if so, and thanks very much for your work. :-)
But note that being able to search for "carriage return", "new line" and "page break" (and possibly also the other ones you mention) depends on those being present in the internal representation of text. I am not sure at all these *typographical concepts" exist in the internal representation of text in OpenOffice.org/LibreOffice. I think I have been told that OOo/LO uses a much more "structured" approach with separate objects for paragraphs etc, and maybe then even stores forced line breaks just as data structures, not as actual embedded carriage returns and/or new line characters. So implementing this might be much more complex than what it perhaps is in MS Office. That doesn't mean it wouldn't be useful, of course. Even if we keep the traditional OOo way to store text in LibreOffice, we could present to the user an illusion that also the formatting characters you mention are actually present. That might be useful for people migrating from MS Office. On the other hand, for the (few...) people who actually prefer to think of documents in a structured fashion and not as stream of characters including formatting characters, being able to search for for instance carriage returns sure would seem unnatural. In an ideal world, that is how one should conceptualize documents, no? Of course, I might be totally misunderstanding stuff above, and in that case, feel free to correct me, and/or ignore my rambling.
Hi Tor, Thank you for your comments. I think you've indeed understood what I was on about, but: I understand what you're talking about as regards LibO/OOo's internal storage. However, that is invisible to the end user. I, the dumb end user, pressed the carriage return key while typing. I don't care how the software stores it. But I want to be able to search for that carriage return after. Same thing when I press Shift-Enter (a "new line" or "soft return"). I want to be able to find those "new line" "characters" after. Same thing for tab "characters". Etc. Since I made those keystrokes and they have a result on-screen, they are obviously being stored in some form or other. Otherwise, next time I open it, my doc would look different from the way it looked when I typed it, no? ;-) I sometimes need to search for the "new line" characters and replace them with a "carriage return" and thus create new paragpaphs, etc. Or I need to search for 8 space characters and replace them with a "tab mark" instead. In MS Office, I have a dropdown list of such "special characters" and it makes life very simple to use them in find/replaces. Could we get that in LibO, too, please? Thanks if so. ;-) Please let me know if I haven't explained clearly. :-)
*** Bug 31509 has been marked as a duplicate of this bug. ***
Please note that the term I meant was NON-PRINTING CHARACTERS, not "special characters"...
(In reply to comment #3) > *** Bug 31509 has been marked as a duplicate of this bug. *** (In reply to comment #2) > Hi Tor, > > Thank you for your comments. I think you've indeed understood what I was on > about, but: > > I understand what you're talking about as regards LibO/OOo's internal storage. > > However, that is invisible to the end user. Indeed, unlike plain text, where you actually can search for and replace newlines (LF), carriage returns (CR) or combinations (CRLF) if you use the right text handling tools. Some Unicode pointers: LF: Line Feed, U+000A CR: Carriage Return, U+000D CR+LF: CR (U+000D) followed by LF (U+000A) NEL: Next Line, U+0085 LS: Line Separator, U+2028 PS: Paragraph Separator, U+2029 (I wonder how LibreOffice handles plain text files internally, since those characters really *are* there then...) > I, the dumb end user, pressed the carriage return key while typing. I don't > care how the software stores it. But I want to be able to search for that > carriage return after. > > Same thing when I press Shift-Enter (a "new line" or "soft return"). I want to > be able to find those "new line" "characters" after. I can't see why LibreOffice couldn't handle these things by allowing the user an easy way to *both* search *and* replace arbitrary combinations of CR and LF, by handling these things inside the content.xml. > Since I made those keystrokes and they have a result on-screen, they are > obviously being stored in some form or other. Otherwise, next time I open it, > my doc would look different from the way it looked when I typed it, no? ;-) This is what it can look like: "<text:p text:style-name="Standard">Two paragraphs starting with this line ending</text:p> <text:p text:style-name="Standard"/> -<text:p text:style-name="Standard">Two newlines starting with this line ending<text:line-break/> <text:line-break/>" It looks like there may be a few cases to handle. Paragraphs seem to have and opening tag (<text:p text:style-name="Standard"/>), and a closing tag (</text:p>) only if there was text in the line, while newlines only have closing tags (<text:line-break/>). Writing a textutils script that can handle this simple example is a bit of work, but surely not too hard, even for a non-programmer like me, so a pro like the LibreOffice developers shouldn't find it hard at all ;). The only potential problem I can see in this simple example, is the "Standard" style-name bit inside the opening tag. Is there a policy for this in LibreOffice, like using the closest preceding one, or polling a standard template? My guess at why LibreOffice handles it this way, is that it helps make it handle paragraphs, newlines etc. in a uniform way across platforms that have different ways of handling new lines. > I sometimes need to search for the "new line" characters and replace them with > a "carriage return" and thus create new paragpaphs, etc. Or I need to search > for 8 space characters and replace them with a "tab mark" instead. You're not alone in this. It's a showstopper for me too and many others, reducing LibreOffice to a very limited number of tasks, forcing me to keep MS Office, which I want to get rid of.
[This is an automated message.] This bug was filed before the changes to Bugzilla on 2011-10-16. Thus it started right out as NEW without ever being explicitly confirmed. The bug is changed to state NEEDINFO for this reason. To move this bug from NEEDINFO back to NEW please check if the bug still persists with the 3.5.0 beta1 or beta2 prereleases. Details on how to test the 3.5.0 beta1 can be found at: http://wiki.documentfoundation.org/QA/BugHunting_Session_3.5.0.-1 more detail on this bulk operation: http://nabble.documentfoundation.org/RFC-Operation-Spamzilla-tp3607474p3607474.html
In 3.5.1 not implemented yet > - carriage return > - new line > - tab mark IMHO it is more easy to add to context Help and tooltips information how to search for these characters using regular expressions than actually implement them. Similarly for replacing for them. Problem is with this: > - page break > - non-breaking spaces I do not know how to find them using regular expressions.
Implementing graphical user interface (drop-down list) for at least the existing regular expressions, such as \t, \n, $, ^, would be useful to novice users. There is an add-on ("alternative find and replace" [1]) which does the job, (including probable workarounds of the way LibreOffice stores text? it can actually handle \n in a way different from what the regular expressions page [2] says); it can probably be helpful to implement this bug. [1] http://extensions.openoffice.org/en/project/AltSearch [2] http://help.libreoffice.org/Common/List_of_Regular_Expressions
Please read this message in its entirety before responding. Your bug was confirmed at least 1 year ago and has not had any activity on it for over a year. Your bug is still set to NEW which means that it is open and confirmed. It would be nice to have the bug confirmed on a newer version than the version reported in the original report to know that the bug is still present -- sometimes a bug is inadvertently fixed over time and just never closed. If you have time please do the following: 1) Test to see if the bug is still present on a currently supported version of LibreOffice (preferably 4.2 or newer). 2) If it is present please leave a comment telling us what version of LibreOffice and your operating system. 3) If it is NOT present please set the bug to RESOLVED-WORKSFORME and leave a short comment telling us your version and Operating System Please DO NOT 1) Update the version field 2) Reply via email (please reply directly on the bug tracker) 3) Set the bug to RESOLVED - FIXED (this status has a particular meaning that is not appropriate in this case) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + LibreOffice is powered by a team of volunteers, every bug is confirmed (triaged) by human beings who mostly give their time for free. We invite you to join our triaging by checking out this link: https://wiki.documentfoundation.org/QA/BugTriage There are also other ways to get involved including with marketing, UX, documentation, and of course developing - http://www.libreoffice.org/get-help/mailing-lists/. Lastly, good bug reports help tremendously in making the process go smoother, please always provide reproducible steps (even if it seems easy) and attach any and all relevant material
in 4.3.1.2 not implemented yet
*** Bug 87645 has been marked as a duplicate of this bug. ***
It is a fact that printing mechanisms use characters that are easy to replace but non-printing characters are not replaceable. Having said that https://www.topaustralianwriters.com/bestessays-com-au-review/ we should do working on both printing mechanism after using it.
*** Bug 137219 has been marked as a duplicate of this bug. ***
Author of dupe bug 137219 here... I believe this bug mixes up several issues - because the MS Word feature it refers to mixes up these issues: 1. The ability to search for multi-line / multi-paragraph patterns 2. The ability to search for non-printing characters which relate to LO document structure, e.g. LF, CR, PS (see comment #5) and maybe others. 3. The UI for exposing these abilities, and whether it needs to be similar to MS-Word's in referring to "low-level" concepts like LF and CR and their effect, or only to "high-level" concepts like lines and paragraphs. 4. The ability to search for characters which don't relate to document structure, but which can't easily be entered using the keyboard, like non-breaking space and tab, or non-printing characters such as ZWJ, RLM, LRM and so on. I therefore suggest that these issues be split up into separate bugs with appropriate dependencies/relations between them. Why? * NBSP and tab searching are really just a UI shortcoming, they can be searched even now if you paste these characters from elsewhere and there's no reason to hold that up for the other, deeper, more complex issues. * Part of what can be / needs to be done is allowing for regular expressions like "foo\n.*bar" to work in some reasonable way. That can be done without deciding whether LFs/CRs are exposed to the user or not. I would like to ask for the CC list members' opinions on this suggestion.
You resolved my big problem about MS office, COVID Vaccine: "https://khaleejmag.com/news/bolivia-has-registered-sputnik-v-vaccine-based-on-russian-clinical-trial-data/"is now easily available in mostly countries.
(In reply to Indiana Lambert from comment #15) In case you were referring to my comment #14 - I didn't quite understand what you meant.
This is the post I'm looking for so long times, everything is clearly defined. Thanks for sharing. https://leions.pk/
No doubt your article has interesting facts. Keep sharing interesting kinds of stuff. https://www.thegenuineleather.com
I'm looking for this type of article for a long time and finally get it from here. Keep sharing this type of article. https://www.thegenuineleather.com/product/notre-dame-rudy-irish-jacket/
I'm glad by reading your fascinating article, Keep uploading more interesting articles. https://www.thegenuineleather.com/product/1978-soda-club-pelle-pelle-jacket/
I'm happy by reading your interesting article, Keep uploading more interesting articles like this. https://www.thegenuineleather.com/category/men-leather-jacket/
I'm happy by reading your enjoyable article, Keep uploading more interesting articles like this. https://www.thegenuineleather.com/product/cyberpunk-2077-jacket/
Created attachment 169902 [details] Simple example of a tiny bit of text with formating.
Created attachment 169903 [details] Dump of the internal SwNodes structure Just to give you an idea, how Writer internally sees this simple document. There is simply no way to search for newlines with an regexp. NBSP OTOH has a direct representation in utf-8 (C2 A0) / unicode, that's why you can search for it. Obviously it's not an unsolvable problem, but nobody found it yet important enough to implement, or even got budget for it.
(In reply to Jan-Marek Glogowski from comment #24) > There is simply no way to search for newlines with an regexp. I believe you're misunderstanding... the requested feature is not applying a regexp to the serialization of LO's representation of the document, but rather to implement a regexp in a way in which a more complex search (e.g. using XPath or what-not) would perform a close equivalent of what a regexp application would in a pure textual document. Specifically, in your example document, the regexp /Two\nThree/ would find a match, starting before the T of Two and ending after the Three, on the next line. It is up to LO to make this "magic" happen.
(In reply to Eyal Rozenberg from comment #25) > (In reply to Jan-Marek Glogowski from comment #24) > > There is simply no way to search for newlines with an regexp. > > Specifically, in your example document, the regexp /Two\nThree/ would find a > match, starting before the T of Two and ending after the Three, on the next > line. Just for this match to happen, you would need to convert the internal representation of newline to "\n", so a regexp can match, and somehow convert a result back. And IMHO that would be really non-trivial. You don't want to write a regexp abstraction over LO internal representation. That would probably be even harder.
(In reply to Jan-Marek Glogowski from comment #26) > Just for this match to happen, you would need to convert the internal > representation of newline to "\n", so a regexp can match You would likely not want run a regexp search. Perhaps something like an XQuery or XPath lookup. i.e. you would probably transform the regex, not the document. > And IMHO that would be really non-trivial. Yes, of course it would be non-trivial - it would require quite a bit of programming work. And that is another reason why I think this bug should be split up.
Check https://www.google.com
Fizz up your party with Fizazzle’s kids parties or Dazzle your guests with one of our elaborate themed decorations or Burst out of the box with bespoke children’s https://fizazzle.com/fizazzle-party/
How Important Do doctor Make In Canada? is the question people are veritably curious about. Piecemeal from having the honor to serve the indigent, medical professions also come with healthy pay. Before entering any career, anyone would be interested in knowing the financial price it would give. https://www.aceqbank.com/how-much-do-doctors-make-in-canada/
One of Toronto's Largest Tile Importers BRINGING THE LATEST TILES FROM AROUND THE WORLD TO YOU Proudly Serving our Customers since 2006 Driven by passion and determination to bring customers the most sophisticated tiles from around the world. With over 35 years of experience in the tile industry, John Pasquariello founded M2 Tile & Stone in 2006. The company’s name was inspired by the primary unit of measure used when purchasing materials from overseas in square meters (m2). https://m2tilestone.com/material/porcelain-tiles/ https://m2tilestone.com/colour/white-tiles/ https://m2tilestone.com/colour/grey-tiles/
Finest Glass Shower Doors Manufacturers | Toronto Custom Glass Toronto custom glass is the best glass shower doors company for custom frameless glass shower doors, glass railings, glass panels & more https://glassshowerdoors.ca/
Store For all of your Superhero Outfit, Celerity Jackets And Leather Jackets! - The Jasperz Waste no time any further browsing and check out the vast varieties of superhero jackets, celebrity jackets and many many more, visit and order now and be the fashion diva of your circle! https://thejasperz.com/product/yellowstone-season-4-mo-brings-plenty-black-vest/
Localgeekshelp is the best tech support company that helps customer in tech support like genealogy support, browser support, antivirus support and printer support in just one click. Get all the technical solution in just a single place. In local geeks help, you will get all the solution of your problem. If you are looking for the support Visit our website or you can call us our toll-free Number +1-800-513-4943.
Localgeekshelp is the best tech support company that helps customer in tech support like genealogy support, browser support, antivirus support and printer support in just one click. Get all the technical solution in just a single place. In local geeks help, you will get all the solution of your problem. If you are looking for the support Visit our website or you can call us our toll-free Number +1-800-513-4943. https://localgeekshelp.com/