TWIG: trim two characters from a string
I'm very new to TWIG.
I have a string ₹1,324
, or ₹324
compare it with integer value 3000, so I want to trim characters ₹
and ,
I know how to trim one character.
{% if foo |trim('₹') |number_format > 3000 %}
help me to how to do it.
thanks in advance.
php twig twig-filter
add a comment |
I'm very new to TWIG.
I have a string ₹1,324
, or ₹324
compare it with integer value 3000, so I want to trim characters ₹
and ,
I know how to trim one character.
{% if foo |trim('₹') |number_format > 3000 %}
help me to how to do it.
thanks in advance.
php twig twig-filter
1
It feels like this is the sort of comparison that should be done in the controller or method, and the result sent to the view.
– Darragh Enright
Nov 14 '18 at 18:25
Alternatively you might want to look at extending Twig to create a custom filter.
– Darragh Enright
Nov 14 '18 at 18:26
add a comment |
I'm very new to TWIG.
I have a string ₹1,324
, or ₹324
compare it with integer value 3000, so I want to trim characters ₹
and ,
I know how to trim one character.
{% if foo |trim('₹') |number_format > 3000 %}
help me to how to do it.
thanks in advance.
php twig twig-filter
I'm very new to TWIG.
I have a string ₹1,324
, or ₹324
compare it with integer value 3000, so I want to trim characters ₹
and ,
I know how to trim one character.
{% if foo |trim('₹') |number_format > 3000 %}
help me to how to do it.
thanks in advance.
php twig twig-filter
php twig twig-filter
edited Nov 14 '18 at 20:20
miken32
23.9k84972
23.9k84972
asked Nov 14 '18 at 18:15
maazmaaz
1,367153980
1,367153980
1
It feels like this is the sort of comparison that should be done in the controller or method, and the result sent to the view.
– Darragh Enright
Nov 14 '18 at 18:25
Alternatively you might want to look at extending Twig to create a custom filter.
– Darragh Enright
Nov 14 '18 at 18:26
add a comment |
1
It feels like this is the sort of comparison that should be done in the controller or method, and the result sent to the view.
– Darragh Enright
Nov 14 '18 at 18:25
Alternatively you might want to look at extending Twig to create a custom filter.
– Darragh Enright
Nov 14 '18 at 18:26
1
1
It feels like this is the sort of comparison that should be done in the controller or method, and the result sent to the view.
– Darragh Enright
Nov 14 '18 at 18:25
It feels like this is the sort of comparison that should be done in the controller or method, and the result sent to the view.
– Darragh Enright
Nov 14 '18 at 18:25
Alternatively you might want to look at extending Twig to create a custom filter.
– Darragh Enright
Nov 14 '18 at 18:26
Alternatively you might want to look at extending Twig to create a custom filter.
– Darragh Enright
Nov 14 '18 at 18:26
add a comment |
2 Answers
2
active
oldest
votes
Use php str_replace
str_replace([",", "₹"], "", $str);
replace for twig
{% if foo |replace({'₹':'', ',':''}) |number_format > 3000 %}
https://twig.symfony.com/doc/2.x/filters/replace.html
So how you would ideally do it would be pass in just a regular integer to your twig template, do the comparison & then if you need to display the whole string on the page, prefix the number_format
to get the comma and if you wish decimal places.
https://twig.symfony.com/doc/2.x/filters/number_format.html
doesnt work when there is no comma , ₹324
– maaz
Nov 14 '18 at 18:31
Check my update.
– Chad
Nov 14 '18 at 18:37
add a comment |
As mentioned in comments, this is not a job for a view. But the replace
filter can do this:
{% if foo |replace({'₹':'', ',':''}) > 3000 %}
You don't want to use the number_format
filter as this will just reintroduce punctuation.
doesnt work with₹324
– maaz
Nov 14 '18 at 18:29
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%2f53306467%2ftwig-trim-two-characters-from-a-string%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
Use php str_replace
str_replace([",", "₹"], "", $str);
replace for twig
{% if foo |replace({'₹':'', ',':''}) |number_format > 3000 %}
https://twig.symfony.com/doc/2.x/filters/replace.html
So how you would ideally do it would be pass in just a regular integer to your twig template, do the comparison & then if you need to display the whole string on the page, prefix the number_format
to get the comma and if you wish decimal places.
https://twig.symfony.com/doc/2.x/filters/number_format.html
doesnt work when there is no comma , ₹324
– maaz
Nov 14 '18 at 18:31
Check my update.
– Chad
Nov 14 '18 at 18:37
add a comment |
Use php str_replace
str_replace([",", "₹"], "", $str);
replace for twig
{% if foo |replace({'₹':'', ',':''}) |number_format > 3000 %}
https://twig.symfony.com/doc/2.x/filters/replace.html
So how you would ideally do it would be pass in just a regular integer to your twig template, do the comparison & then if you need to display the whole string on the page, prefix the number_format
to get the comma and if you wish decimal places.
https://twig.symfony.com/doc/2.x/filters/number_format.html
doesnt work when there is no comma , ₹324
– maaz
Nov 14 '18 at 18:31
Check my update.
– Chad
Nov 14 '18 at 18:37
add a comment |
Use php str_replace
str_replace([",", "₹"], "", $str);
replace for twig
{% if foo |replace({'₹':'', ',':''}) |number_format > 3000 %}
https://twig.symfony.com/doc/2.x/filters/replace.html
So how you would ideally do it would be pass in just a regular integer to your twig template, do the comparison & then if you need to display the whole string on the page, prefix the number_format
to get the comma and if you wish decimal places.
https://twig.symfony.com/doc/2.x/filters/number_format.html
Use php str_replace
str_replace([",", "₹"], "", $str);
replace for twig
{% if foo |replace({'₹':'', ',':''}) |number_format > 3000 %}
https://twig.symfony.com/doc/2.x/filters/replace.html
So how you would ideally do it would be pass in just a regular integer to your twig template, do the comparison & then if you need to display the whole string on the page, prefix the number_format
to get the comma and if you wish decimal places.
https://twig.symfony.com/doc/2.x/filters/number_format.html
edited Nov 14 '18 at 18:37
answered Nov 14 '18 at 18:23
ChadChad
50014
50014
doesnt work when there is no comma , ₹324
– maaz
Nov 14 '18 at 18:31
Check my update.
– Chad
Nov 14 '18 at 18:37
add a comment |
doesnt work when there is no comma , ₹324
– maaz
Nov 14 '18 at 18:31
Check my update.
– Chad
Nov 14 '18 at 18:37
doesnt work when there is no comma , ₹324
– maaz
Nov 14 '18 at 18:31
doesnt work when there is no comma , ₹324
– maaz
Nov 14 '18 at 18:31
Check my update.
– Chad
Nov 14 '18 at 18:37
Check my update.
– Chad
Nov 14 '18 at 18:37
add a comment |
As mentioned in comments, this is not a job for a view. But the replace
filter can do this:
{% if foo |replace({'₹':'', ',':''}) > 3000 %}
You don't want to use the number_format
filter as this will just reintroduce punctuation.
doesnt work with₹324
– maaz
Nov 14 '18 at 18:29
add a comment |
As mentioned in comments, this is not a job for a view. But the replace
filter can do this:
{% if foo |replace({'₹':'', ',':''}) > 3000 %}
You don't want to use the number_format
filter as this will just reintroduce punctuation.
doesnt work with₹324
– maaz
Nov 14 '18 at 18:29
add a comment |
As mentioned in comments, this is not a job for a view. But the replace
filter can do this:
{% if foo |replace({'₹':'', ',':''}) > 3000 %}
You don't want to use the number_format
filter as this will just reintroduce punctuation.
As mentioned in comments, this is not a job for a view. But the replace
filter can do this:
{% if foo |replace({'₹':'', ',':''}) > 3000 %}
You don't want to use the number_format
filter as this will just reintroduce punctuation.
edited Nov 14 '18 at 20:23
answered Nov 14 '18 at 18:26
miken32miken32
23.9k84972
23.9k84972
doesnt work with₹324
– maaz
Nov 14 '18 at 18:29
add a comment |
doesnt work with₹324
– maaz
Nov 14 '18 at 18:29
doesnt work with
₹324
– maaz
Nov 14 '18 at 18:29
doesnt work with
₹324
– maaz
Nov 14 '18 at 18:29
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%2f53306467%2ftwig-trim-two-characters-from-a-string%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
1
It feels like this is the sort of comparison that should be done in the controller or method, and the result sent to the view.
– Darragh Enright
Nov 14 '18 at 18:25
Alternatively you might want to look at extending Twig to create a custom filter.
– Darragh Enright
Nov 14 '18 at 18:26