How to find a file path like `\companypath` while in edit mode in a browser editor like confluence
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
add a comment |
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
add a comment |
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
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
browser find-and-replace wildcards escape-characters confluence
edited Jan 11 at 8:15
Dirk Horsten
asked Jan 10 at 10:32
Dirk HorstenDirk Horsten
19319
19319
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
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.
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
add a comment |
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 afind on this page
option;
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
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
add a comment |
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.
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
add a comment |
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.
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.
answered Jan 10 at 11:28
TotoToto
3,828101226
3,828101226
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
add a comment |
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
add a comment |
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 afind on this page
option;
add a comment |
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 afind on this page
option;
add a comment |
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 afind on this page
option;
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 afind on this page
option;
answered Jan 10 at 13:27
Dirk HorstenDirk Horsten
19319
19319
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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