How to add additional tag to a specific word using regular expression and php
I want to add into #indlude. i.e if
#include<stdio.h>
#include<math.h>
int main()
is my target string then it will be :
<span class="header">#include<stdio.h></span>
<span class="header">#include<math.h></span>
int main()
I tried using regular expression as follows:
<?php
$input = '#include<stdio.h> int main()';
$input = preg_replace('/(#(w)+<(w)+.h>)/','<span class="header">$1</span>',$input);
echo $input;
?>
But no luck. Any idea?
php regex
add a comment |
I want to add into #indlude. i.e if
#include<stdio.h>
#include<math.h>
int main()
is my target string then it will be :
<span class="header">#include<stdio.h></span>
<span class="header">#include<math.h></span>
int main()
I tried using regular expression as follows:
<?php
$input = '#include<stdio.h> int main()';
$input = preg_replace('/(#(w)+<(w)+.h>)/','<span class="header">$1</span>',$input);
echo $input;
?>
But no luck. Any idea?
php regex
5
w
is notw
,w+
matcheswwww
. You probably meant to use'/^#include<[^>]+>$/m'
and replace with'<span class="header">$0</span>'
– Wiktor Stribiżew
Nov 25 '18 at 17:46
Note that you should html encode '<' and '>' around <stdio.h>
– Poul Bak
Nov 25 '18 at 18:06
Also, in your current regex.
matches any character. You need to use.
to match a.
.
– Nick
Nov 25 '18 at 22:59
add a comment |
I want to add into #indlude. i.e if
#include<stdio.h>
#include<math.h>
int main()
is my target string then it will be :
<span class="header">#include<stdio.h></span>
<span class="header">#include<math.h></span>
int main()
I tried using regular expression as follows:
<?php
$input = '#include<stdio.h> int main()';
$input = preg_replace('/(#(w)+<(w)+.h>)/','<span class="header">$1</span>',$input);
echo $input;
?>
But no luck. Any idea?
php regex
I want to add into #indlude. i.e if
#include<stdio.h>
#include<math.h>
int main()
is my target string then it will be :
<span class="header">#include<stdio.h></span>
<span class="header">#include<math.h></span>
int main()
I tried using regular expression as follows:
<?php
$input = '#include<stdio.h> int main()';
$input = preg_replace('/(#(w)+<(w)+.h>)/','<span class="header">$1</span>',$input);
echo $input;
?>
But no luck. Any idea?
php regex
php regex
edited Nov 26 '18 at 1:30
Abdus Sattar Bhuiyan
asked Nov 25 '18 at 17:36
Abdus Sattar BhuiyanAbdus Sattar Bhuiyan
1,60821539
1,60821539
5
w
is notw
,w+
matcheswwww
. You probably meant to use'/^#include<[^>]+>$/m'
and replace with'<span class="header">$0</span>'
– Wiktor Stribiżew
Nov 25 '18 at 17:46
Note that you should html encode '<' and '>' around <stdio.h>
– Poul Bak
Nov 25 '18 at 18:06
Also, in your current regex.
matches any character. You need to use.
to match a.
.
– Nick
Nov 25 '18 at 22:59
add a comment |
5
w
is notw
,w+
matcheswwww
. You probably meant to use'/^#include<[^>]+>$/m'
and replace with'<span class="header">$0</span>'
– Wiktor Stribiżew
Nov 25 '18 at 17:46
Note that you should html encode '<' and '>' around <stdio.h>
– Poul Bak
Nov 25 '18 at 18:06
Also, in your current regex.
matches any character. You need to use.
to match a.
.
– Nick
Nov 25 '18 at 22:59
5
5
w
is not w
, w+
matches wwww
. You probably meant to use '/^#include<[^>]+>$/m'
and replace with '<span class="header">$0</span>'
– Wiktor Stribiżew
Nov 25 '18 at 17:46
w
is not w
, w+
matches wwww
. You probably meant to use '/^#include<[^>]+>$/m'
and replace with '<span class="header">$0</span>'
– Wiktor Stribiżew
Nov 25 '18 at 17:46
Note that you should html encode '<' and '>' around <stdio.h>
– Poul Bak
Nov 25 '18 at 18:06
Note that you should html encode '<' and '>' around <stdio.h>
– Poul Bak
Nov 25 '18 at 18:06
Also, in your current regex
.
matches any character. You need to use .
to match a .
.– Nick
Nov 25 '18 at 22:59
Also, in your current regex
.
matches any character. You need to use .
to match a .
.– Nick
Nov 25 '18 at 22:59
add a comment |
1 Answer
1
active
oldest
votes
Unless you state otherwise, you don't need any capture groups or start of line anchors; just replace the fullstring match ($0
)
Code: (Demo)
$string = <<<STRING
#include<math.h>
#include<stdio.h>
int main()
STRING;
echo preg_replace('~#include<[^>]+>~', '<span class="header">$0</span>', $string);
Output:
<span class="header">#include<math.h></span>
<span class="header">#include<stdio.h></span>
int main()
The negated character class ([^>]
) will greedily match all characters between <
and >
-- this is preferable as a matter of pattern efficiency.
Huh, I didn't know that$0
matches the whole string. Have an upvote :)
– Davіd
Nov 26 '18 at 3:22
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
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%2fstackoverflow.com%2fquestions%2f53470113%2fhow-to-add-additional-tag-to-a-specific-word-using-regular-expression-and-php%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Unless you state otherwise, you don't need any capture groups or start of line anchors; just replace the fullstring match ($0
)
Code: (Demo)
$string = <<<STRING
#include<math.h>
#include<stdio.h>
int main()
STRING;
echo preg_replace('~#include<[^>]+>~', '<span class="header">$0</span>', $string);
Output:
<span class="header">#include<math.h></span>
<span class="header">#include<stdio.h></span>
int main()
The negated character class ([^>]
) will greedily match all characters between <
and >
-- this is preferable as a matter of pattern efficiency.
Huh, I didn't know that$0
matches the whole string. Have an upvote :)
– Davіd
Nov 26 '18 at 3:22
add a comment |
Unless you state otherwise, you don't need any capture groups or start of line anchors; just replace the fullstring match ($0
)
Code: (Demo)
$string = <<<STRING
#include<math.h>
#include<stdio.h>
int main()
STRING;
echo preg_replace('~#include<[^>]+>~', '<span class="header">$0</span>', $string);
Output:
<span class="header">#include<math.h></span>
<span class="header">#include<stdio.h></span>
int main()
The negated character class ([^>]
) will greedily match all characters between <
and >
-- this is preferable as a matter of pattern efficiency.
Huh, I didn't know that$0
matches the whole string. Have an upvote :)
– Davіd
Nov 26 '18 at 3:22
add a comment |
Unless you state otherwise, you don't need any capture groups or start of line anchors; just replace the fullstring match ($0
)
Code: (Demo)
$string = <<<STRING
#include<math.h>
#include<stdio.h>
int main()
STRING;
echo preg_replace('~#include<[^>]+>~', '<span class="header">$0</span>', $string);
Output:
<span class="header">#include<math.h></span>
<span class="header">#include<stdio.h></span>
int main()
The negated character class ([^>]
) will greedily match all characters between <
and >
-- this is preferable as a matter of pattern efficiency.
Unless you state otherwise, you don't need any capture groups or start of line anchors; just replace the fullstring match ($0
)
Code: (Demo)
$string = <<<STRING
#include<math.h>
#include<stdio.h>
int main()
STRING;
echo preg_replace('~#include<[^>]+>~', '<span class="header">$0</span>', $string);
Output:
<span class="header">#include<math.h></span>
<span class="header">#include<stdio.h></span>
int main()
The negated character class ([^>]
) will greedily match all characters between <
and >
-- this is preferable as a matter of pattern efficiency.
answered Nov 26 '18 at 3:15
mickmackusamickmackusa
23.4k103658
23.4k103658
Huh, I didn't know that$0
matches the whole string. Have an upvote :)
– Davіd
Nov 26 '18 at 3:22
add a comment |
Huh, I didn't know that$0
matches the whole string. Have an upvote :)
– Davіd
Nov 26 '18 at 3:22
Huh, I didn't know that
$0
matches the whole string. Have an upvote :)– Davіd
Nov 26 '18 at 3:22
Huh, I didn't know that
$0
matches the whole string. Have an upvote :)– Davіd
Nov 26 '18 at 3:22
add a comment |
Thanks for contributing an answer to Stack Overflow!
- 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%2fstackoverflow.com%2fquestions%2f53470113%2fhow-to-add-additional-tag-to-a-specific-word-using-regular-expression-and-php%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
5
w
is notw
,w+
matcheswwww
. You probably meant to use'/^#include<[^>]+>$/m'
and replace with'<span class="header">$0</span>'
– Wiktor Stribiżew
Nov 25 '18 at 17:46
Note that you should html encode '<' and '>' around <stdio.h>
– Poul Bak
Nov 25 '18 at 18:06
Also, in your current regex
.
matches any character. You need to use.
to match a.
.– Nick
Nov 25 '18 at 22:59