Template:StripLastWord: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
<!-- Strips the last word of the passed content. Using functions from the StringFunctions extension-->{{#sub:{{{1}}}|0|{{#rpos:{{{1}}}| }}}} | <!-- Strips the last word of the passed content. Using functions from the StringFunctions extension. Can a space be found? Then return everything before the last space. Can't a space be found. Then return nothing.-->{{#ifeq:{{#rpos:{{{1}}}| }}|-1|<!-- no space found -->|{{#sub:{{{1}}}|0|{{#rpos:{{{1}}}| }}}}}} |