TWIG: trim two characters from a string












0















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.










share|improve this question




















  • 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
















0















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.










share|improve this question




















  • 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














0












0








0








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.










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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














  • 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












2 Answers
2






active

oldest

votes


















1














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






share|improve this answer


























  • 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





















1














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.






share|improve this answer


























  • doesnt work with ₹324

    – maaz
    Nov 14 '18 at 18:29











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
});


}
});














draft saved

draft discarded


















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









1














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






share|improve this answer


























  • 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


















1














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






share|improve this answer


























  • 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
















1












1








1







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






share|improve this answer















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







share|improve this answer














share|improve this answer



share|improve this answer








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





















  • 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















1














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.






share|improve this answer


























  • doesnt work with ₹324

    – maaz
    Nov 14 '18 at 18:29
















1














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.






share|improve this answer


























  • doesnt work with ₹324

    – maaz
    Nov 14 '18 at 18:29














1












1








1







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.






share|improve this answer















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.







share|improve this answer














share|improve this answer



share|improve this answer








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



















  • 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


















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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

Xamarin.iOS Cant Deploy on Iphone

Glorious Revolution

Dulmage-Mendelsohn matrix decomposition in Python