How to find a file path like `\companypath` while in edit mode in a browser editor like confluence












0















When editing a page in confluence CTRL-f brings you to a find-and-replace dialogue instead of the find field of your browser. When filling in a file path in the find box of this dialogue, you don't find that file path.



I assume this is because backslash is an escape character, so I tried doubling the back slashes, but that does not work. Replacing them by typical wild chard characters, like *, . or ? does not work either.



Does anyone have a sollution?










share|improve this question





























    0















    When editing a page in confluence CTRL-f brings you to a find-and-replace dialogue instead of the find field of your browser. When filling in a file path in the find box of this dialogue, you don't find that file path.



    I assume this is because backslash is an escape character, so I tried doubling the back slashes, but that does not work. Replacing them by typical wild chard characters, like *, . or ? does not work either.



    Does anyone have a sollution?










    share|improve this question



























      0












      0








      0








      When editing a page in confluence CTRL-f brings you to a find-and-replace dialogue instead of the find field of your browser. When filling in a file path in the find box of this dialogue, you don't find that file path.



      I assume this is because backslash is an escape character, so I tried doubling the back slashes, but that does not work. Replacing them by typical wild chard characters, like *, . or ? does not work either.



      Does anyone have a sollution?










      share|improve this question
















      When editing a page in confluence CTRL-f brings you to a find-and-replace dialogue instead of the find field of your browser. When filling in a file path in the find box of this dialogue, you don't find that file path.



      I assume this is because backslash is an escape character, so I tried doubling the back slashes, but that does not work. Replacing them by typical wild chard characters, like *, . or ? does not work either.



      Does anyone have a sollution?







      browser find-and-replace wildcards escape-characters confluence






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jan 11 at 8:15







      Dirk Horsten

















      asked Jan 10 at 10:32









      Dirk HorstenDirk Horsten

      19319




      19319






















          2 Answers
          2






          active

          oldest

          votes


















          0














          According to doc:




          Note: Confluence doesn't support leading wildcards. This means searching for *heese will not return cheese.




          So, if you search for \companypath, *company?path will not return anything.



          I'd use: company?path, without the leading wildcard.






          share|improve this answer
























          • As I wrote, the ? wild card does not work. Should I flag somewhere I want to use wildcards first?

            – Dirk Horsten
            Jan 10 at 12:32











          • @DirkHorsten: Have you tried to search with regex, like: /\\company\path/ or /.*company\path.*/

            – Toto
            Jan 10 at 12:36











          • I just tried, but it does not work.

            – Dirk Horsten
            Jan 10 at 13:06



















          0














          You can open the find facility without pressing ctrl-f:




          • In Google, in the right upper corner, under the windows close-cross, you find 3 dots that open a menu. This menu includes the find facility of google.

          • In Internet Explorer, at the same place, you can open the settings menu. The submenu File contains a find on this page option;






          share|improve this answer























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "3"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1392695%2fhow-to-find-a-file-path-like-company-path-while-in-edit-mode-in-a-browser-ed%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            According to doc:




            Note: Confluence doesn't support leading wildcards. This means searching for *heese will not return cheese.




            So, if you search for \companypath, *company?path will not return anything.



            I'd use: company?path, without the leading wildcard.






            share|improve this answer
























            • As I wrote, the ? wild card does not work. Should I flag somewhere I want to use wildcards first?

              – Dirk Horsten
              Jan 10 at 12:32











            • @DirkHorsten: Have you tried to search with regex, like: /\\company\path/ or /.*company\path.*/

              – Toto
              Jan 10 at 12:36











            • I just tried, but it does not work.

              – Dirk Horsten
              Jan 10 at 13:06
















            0














            According to doc:




            Note: Confluence doesn't support leading wildcards. This means searching for *heese will not return cheese.




            So, if you search for \companypath, *company?path will not return anything.



            I'd use: company?path, without the leading wildcard.






            share|improve this answer
























            • As I wrote, the ? wild card does not work. Should I flag somewhere I want to use wildcards first?

              – Dirk Horsten
              Jan 10 at 12:32











            • @DirkHorsten: Have you tried to search with regex, like: /\\company\path/ or /.*company\path.*/

              – Toto
              Jan 10 at 12:36











            • I just tried, but it does not work.

              – Dirk Horsten
              Jan 10 at 13:06














            0












            0








            0







            According to doc:




            Note: Confluence doesn't support leading wildcards. This means searching for *heese will not return cheese.




            So, if you search for \companypath, *company?path will not return anything.



            I'd use: company?path, without the leading wildcard.






            share|improve this answer













            According to doc:




            Note: Confluence doesn't support leading wildcards. This means searching for *heese will not return cheese.




            So, if you search for \companypath, *company?path will not return anything.



            I'd use: company?path, without the leading wildcard.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Jan 10 at 11:28









            TotoToto

            3,763101226




            3,763101226













            • As I wrote, the ? wild card does not work. Should I flag somewhere I want to use wildcards first?

              – Dirk Horsten
              Jan 10 at 12:32











            • @DirkHorsten: Have you tried to search with regex, like: /\\company\path/ or /.*company\path.*/

              – Toto
              Jan 10 at 12:36











            • I just tried, but it does not work.

              – Dirk Horsten
              Jan 10 at 13:06



















            • As I wrote, the ? wild card does not work. Should I flag somewhere I want to use wildcards first?

              – Dirk Horsten
              Jan 10 at 12:32











            • @DirkHorsten: Have you tried to search with regex, like: /\\company\path/ or /.*company\path.*/

              – Toto
              Jan 10 at 12:36











            • I just tried, but it does not work.

              – Dirk Horsten
              Jan 10 at 13:06

















            As I wrote, the ? wild card does not work. Should I flag somewhere I want to use wildcards first?

            – Dirk Horsten
            Jan 10 at 12:32





            As I wrote, the ? wild card does not work. Should I flag somewhere I want to use wildcards first?

            – Dirk Horsten
            Jan 10 at 12:32













            @DirkHorsten: Have you tried to search with regex, like: /\\company\path/ or /.*company\path.*/

            – Toto
            Jan 10 at 12:36





            @DirkHorsten: Have you tried to search with regex, like: /\\company\path/ or /.*company\path.*/

            – Toto
            Jan 10 at 12:36













            I just tried, but it does not work.

            – Dirk Horsten
            Jan 10 at 13:06





            I just tried, but it does not work.

            – Dirk Horsten
            Jan 10 at 13:06













            0














            You can open the find facility without pressing ctrl-f:




            • In Google, in the right upper corner, under the windows close-cross, you find 3 dots that open a menu. This menu includes the find facility of google.

            • In Internet Explorer, at the same place, you can open the settings menu. The submenu File contains a find on this page option;






            share|improve this answer




























              0














              You can open the find facility without pressing ctrl-f:




              • In Google, in the right upper corner, under the windows close-cross, you find 3 dots that open a menu. This menu includes the find facility of google.

              • In Internet Explorer, at the same place, you can open the settings menu. The submenu File contains a find on this page option;






              share|improve this answer


























                0












                0








                0







                You can open the find facility without pressing ctrl-f:




                • In Google, in the right upper corner, under the windows close-cross, you find 3 dots that open a menu. This menu includes the find facility of google.

                • In Internet Explorer, at the same place, you can open the settings menu. The submenu File contains a find on this page option;






                share|improve this answer













                You can open the find facility without pressing ctrl-f:




                • In Google, in the right upper corner, under the windows close-cross, you find 3 dots that open a menu. This menu includes the find facility of google.

                • In Internet Explorer, at the same place, you can open the settings menu. The submenu File contains a find on this page option;







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jan 10 at 13:27









                Dirk HorstenDirk Horsten

                19319




                19319






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Super User!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1392695%2fhow-to-find-a-file-path-like-company-path-while-in-edit-mode-in-a-browser-ed%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

                    Mangá

                     ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕