Smart-expansion of a range to a list of numbersDelete an element from a comma delimited listHow to use parameter numbers and foreachLaTeX3 versus pure LuaExpansion issue when adding to CSV list from within a foreachShuffle numbers in a loopSummation of a list of numbersDelimited def's and expansionIgnore expansion in edefError in foreach loop when number range defined with a macroHow to compare a string to a cs from a read properly?

Electricity free spaceship

Why does this query, missing a FROM clause, not error out?

What should I write in an apology letter, since I have decided not to join a company after accepting an offer letter

Should I refuse being named as co-author of a bad quality paper?

Is using 'echo' to display attacker-controlled data on the terminal dangerous?

Can all groups be thought of as the symmetries of a geometrical object?

Should I put programming books I wrote a few years ago on my resume?

Is there a set of positive integers of density 1 which contains no infinite arithmetic progression?

How to hide rifle during medieval town entrance inspection?

Origin of "boor"

Why is long-term living in Almost-Earth causing severe health problems?

Has there been a multiethnic Star Trek character?

How to publish items after pipeline is finished?

Why not invest in precious metals?

Which languages would be most useful in Europe at the end of the 19th century?

Why are MBA programs closing?

I've been given a project I can't complete, what should I do?

How to communicate to my GM that not being allowed to use stealth isn't fun for me?

If I leave the US through an airport, do I have to return through the same airport?

Reactive Programming

How can I remove material from this wood beam?

How can I end combat quickly when the outcome is inevitable?

60s or 70s novel about Empire of Man making 1st contact with 1st discovered alien race

Does putting salt first make it easier for attacker to bruteforce the hash?



Smart-expansion of a range to a list of numbers


Delete an element from a comma delimited listHow to use parameter numbers and foreachLaTeX3 versus pure LuaExpansion issue when adding to CSV list from within a foreachShuffle numbers in a loopSummation of a list of numbersDelimited def's and expansionIgnore expansion in edefError in foreach loop when number range defined with a macroHow to compare a string to a cs from a read properly?













4















I am wondering if there is a simple way to expand some input text such as "3-7" as "3,4,5,6,7"?



For context, I am using foreach and want to be able to write



foreach x in 3-7, 9, 14, 52


and have x run through 3, 4, 5, 6, 7, 9, 14, and 52.



Alternatively, if there's an easy way to have



foreach x in 1,3,...7


result in x being defined as "1, 3, 4, 5, 6, and 7" instead of the standard "1, 3, 5, and 7", that would be great.



EDIT: I don't think I was clear in my explanation, but I personally understand how to do these foreach commands in TeX, but wanted a simple input structure for a non-TeX user to use, i.e. typing makeProblems1, 3-7, 9, 14, 52 and having the associated problems as output.










share|improve this question
























  • Did you try foreach x in 1,3,4,...,7?

    – Phelype Oleinik
    8 hours ago











  • I've thought about that, but wanted the input structure to foreach to be as simple as possible to a non-TeX user. The user (not familiar with TeX), will call a command makeProblems1, 3,...,7 (where the input is thrown into foreach) and expect everything between 3 through 7 to output.

    – ryanj1823
    8 hours ago











  • foreach x in 3,...,7, 9, 14, 52 and foreach x in 1,3,4,5,...,7?

    – marmot
    8 hours ago












  • To the first command: I understand that that works, but I wanted to avoid using the dots altogether if possible. To the second command: see my reply above to Pheylpe Oleinik

    – ryanj1823
    8 hours ago
















4















I am wondering if there is a simple way to expand some input text such as "3-7" as "3,4,5,6,7"?



For context, I am using foreach and want to be able to write



foreach x in 3-7, 9, 14, 52


and have x run through 3, 4, 5, 6, 7, 9, 14, and 52.



Alternatively, if there's an easy way to have



foreach x in 1,3,...7


result in x being defined as "1, 3, 4, 5, 6, and 7" instead of the standard "1, 3, 5, and 7", that would be great.



EDIT: I don't think I was clear in my explanation, but I personally understand how to do these foreach commands in TeX, but wanted a simple input structure for a non-TeX user to use, i.e. typing makeProblems1, 3-7, 9, 14, 52 and having the associated problems as output.










share|improve this question
























  • Did you try foreach x in 1,3,4,...,7?

    – Phelype Oleinik
    8 hours ago











  • I've thought about that, but wanted the input structure to foreach to be as simple as possible to a non-TeX user. The user (not familiar with TeX), will call a command makeProblems1, 3,...,7 (where the input is thrown into foreach) and expect everything between 3 through 7 to output.

    – ryanj1823
    8 hours ago











  • foreach x in 3,...,7, 9, 14, 52 and foreach x in 1,3,4,5,...,7?

    – marmot
    8 hours ago












  • To the first command: I understand that that works, but I wanted to avoid using the dots altogether if possible. To the second command: see my reply above to Pheylpe Oleinik

    – ryanj1823
    8 hours ago














4












4








4








I am wondering if there is a simple way to expand some input text such as "3-7" as "3,4,5,6,7"?



For context, I am using foreach and want to be able to write



foreach x in 3-7, 9, 14, 52


and have x run through 3, 4, 5, 6, 7, 9, 14, and 52.



Alternatively, if there's an easy way to have



foreach x in 1,3,...7


result in x being defined as "1, 3, 4, 5, 6, and 7" instead of the standard "1, 3, 5, and 7", that would be great.



EDIT: I don't think I was clear in my explanation, but I personally understand how to do these foreach commands in TeX, but wanted a simple input structure for a non-TeX user to use, i.e. typing makeProblems1, 3-7, 9, 14, 52 and having the associated problems as output.










share|improve this question
















I am wondering if there is a simple way to expand some input text such as "3-7" as "3,4,5,6,7"?



For context, I am using foreach and want to be able to write



foreach x in 3-7, 9, 14, 52


and have x run through 3, 4, 5, 6, 7, 9, 14, and 52.



Alternatively, if there's an easy way to have



foreach x in 1,3,...7


result in x being defined as "1, 3, 4, 5, 6, and 7" instead of the standard "1, 3, 5, and 7", that would be great.



EDIT: I don't think I was clear in my explanation, but I personally understand how to do these foreach commands in TeX, but wanted a simple input structure for a non-TeX user to use, i.e. typing makeProblems1, 3-7, 9, 14, 52 and having the associated problems as output.







foreach loops programming strings






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 5 hours ago









Phelype Oleinik

29.4k64896




29.4k64896










asked 8 hours ago









ryanj1823ryanj1823

234




234












  • Did you try foreach x in 1,3,4,...,7?

    – Phelype Oleinik
    8 hours ago











  • I've thought about that, but wanted the input structure to foreach to be as simple as possible to a non-TeX user. The user (not familiar with TeX), will call a command makeProblems1, 3,...,7 (where the input is thrown into foreach) and expect everything between 3 through 7 to output.

    – ryanj1823
    8 hours ago











  • foreach x in 3,...,7, 9, 14, 52 and foreach x in 1,3,4,5,...,7?

    – marmot
    8 hours ago












  • To the first command: I understand that that works, but I wanted to avoid using the dots altogether if possible. To the second command: see my reply above to Pheylpe Oleinik

    – ryanj1823
    8 hours ago


















  • Did you try foreach x in 1,3,4,...,7?

    – Phelype Oleinik
    8 hours ago











  • I've thought about that, but wanted the input structure to foreach to be as simple as possible to a non-TeX user. The user (not familiar with TeX), will call a command makeProblems1, 3,...,7 (where the input is thrown into foreach) and expect everything between 3 through 7 to output.

    – ryanj1823
    8 hours ago











  • foreach x in 3,...,7, 9, 14, 52 and foreach x in 1,3,4,5,...,7?

    – marmot
    8 hours ago












  • To the first command: I understand that that works, but I wanted to avoid using the dots altogether if possible. To the second command: see my reply above to Pheylpe Oleinik

    – ryanj1823
    8 hours ago

















Did you try foreach x in 1,3,4,...,7?

– Phelype Oleinik
8 hours ago





Did you try foreach x in 1,3,4,...,7?

– Phelype Oleinik
8 hours ago













I've thought about that, but wanted the input structure to foreach to be as simple as possible to a non-TeX user. The user (not familiar with TeX), will call a command makeProblems1, 3,...,7 (where the input is thrown into foreach) and expect everything between 3 through 7 to output.

– ryanj1823
8 hours ago





I've thought about that, but wanted the input structure to foreach to be as simple as possible to a non-TeX user. The user (not familiar with TeX), will call a command makeProblems1, 3,...,7 (where the input is thrown into foreach) and expect everything between 3 through 7 to output.

– ryanj1823
8 hours ago













foreach x in 3,...,7, 9, 14, 52 and foreach x in 1,3,4,5,...,7?

– marmot
8 hours ago






foreach x in 3,...,7, 9, 14, 52 and foreach x in 1,3,4,5,...,7?

– marmot
8 hours ago














To the first command: I understand that that works, but I wanted to avoid using the dots altogether if possible. To the second command: see my reply above to Pheylpe Oleinik

– ryanj1823
8 hours ago






To the first command: I understand that that works, but I wanted to avoid using the dots altogether if possible. To the second command: see my reply above to Pheylpe Oleinik

– ryanj1823
8 hours ago











3 Answers
3






active

oldest

votes


















2














With a little bit of code you can make yourself a parser. I defined makeProblems<integer list><code> for you, in which <integer list> is a comma separated list of numbers where <x>-<y> is parsed as the list of integers between <x> and <y>, inclusive. The function parses the list of numbers and then iterates over the generated list, and makes the current number available for <code> as #1. For example:



makeProblems1,3-7, 9, 14, 52Do something with #1.par


prints:




enter image description here




The code is long because, as the function takes user input, the function takes extra care to make sure that the <integer list> doesn't contain wrong input.



documentclassarticle
usepackagexparse
ExplSyntaxOn
tl_new:N l_ryanj_list_tl
NewDocumentCommand makeProblems m +m

tl_clear:N l_ryanj_list_tl
exp_args:Nx clist_map_function:nN #1 __ryanj_parse_item:n
tl_map_inline:Nn l_ryanj_list_tl #2

cs_new_protected:Npn __ryanj_add_item:n #1
tl_put_right:Nn l_ryanj_list_tl #1
cs_new_protected:Npn __ryanj_parse_item:n #1

__ryanj_if_number:nTF #1
__ryanj_add_item:n #1

str_if_in:nnTF #1 -
exp_args:Nf __ryanj_parse_range:n tl_to_str:n #1
msg_error:nnn ryanj invalid-number #1


cs_new_protected:Npn __ryanj_parse_range:n #1
__ryanj_parse_range:nw #1 #1 q_mark
cs_new_protected:Npn __ryanj_parse_range:nw #1#2-#3 q_mark

__ryanj_validate_number:nn #1 #2
__ryanj_validate_number:nn #1 #3
int_step_function:nnnN #2 1 #3 __ryanj_add_item:n
use_none:n q_stop

cs_new_protected:Npn __ryanj_validate_number:nn #1 #2

__ryanj_if_number:nF #2

msg_error:nnnn ryanj invalid-number-in-range #2 #1
use_none_delimit_by_q_stop:w


msg_new:nnn ryanj invalid-range Invalid~range~`#1'.
msg_new:nnn ryanj invalid-number Invalid~number~`#1'.
msg_new:nnn ryanj invalid-number-in-range Invalid~number~`#1'~in~range~`#2'.
prg_new_conditional:Npnn __ryanj_if_number:n #1 T, F, TF

tl_if_empty:oTF
tex_romannumeral:D - 0#1 exp_stop_f:

tl_if_empty:nTF #1
prg_return_false:
prg_return_true:

prg_return_false:

% For older expl3:
prg_set_protected_conditional:Npnn str_if_in:nn #1#2 T , F , TF

use:x
tl_if_in:nnTF tl_to_str:n #1 tl_to_str:n #2
prg_return_true: prg_return_false:

ExplSyntaxOff
begindocument
makeProblems1,3-7, 9, 14, 52Do something with #1.par
enddocument





share|improve this answer

























  • This looks great! Although copying and pasting this produces the errors Undefined control sequence ...3-7, 9, 14, 52}Do something with #1.par and Invalid number `3-7' ...3-7, 9, 14, 52}Do something with #1.par ... any edits maybe? Thanks again!

    – ryanj1823
    6 hours ago












  • @ryanj1823 You probably have some older version of the l3kernel. Could you upload the .log file somewhere for me to check? (pastebin.com, for example.)

    – Phelype Oleinik
    6 hours ago












  • pastebin.com/1euZ6R4n ...that should work, much appreciated

    – ryanj1823
    6 hours ago











  • @ryanj1823 Try it now. There were two expl3 functions which don't exist in your distribution (TeXLive 2017), so I adapted the code. (I can't test, though, so tell me if it doesn't work.)

    – Phelype Oleinik
    5 hours ago






  • 1





    @ryanj1823 Done. Now the command expands its argument before processing. Of course you can always expandaftermakeProblemsexpandafterDesiredProblems, but I think that's not exactly user-friendly.

    – Phelype Oleinik
    5 hours ago



















2














documentclassarticle
usepackagelistofitems,pgffor
newcommandmakeProblems[2]%
setsepchar,/-%
readlist*numlist#1%
defz##1#2par%
foreachitemzzinnumlist[]%
ifnumlistlennumlist[zzcnt]=1relaxzzzelse
itemtomacronumlist[zzcnt,1]tmpA
itemtomacronumlist[zzcnt,2]tmpB
foreachzzz in tmpA,...,tmpB%
zzzz%
fi
%

begindocument
makeProblems1,3-7, 9, 14-16, 52Do something with #1.
enddocument


enter image description here






share|improve this answer























  • This works great too! Thanks!

    – ryanj1823
    5 hours ago


















1














I map the given comma separated list; each item is examined and if it contains a hyphen, a loop is done; in any case, an integer is added to a sequence.



Finally the sequence is expanded with separators between the items; optionally this token list is saved to a macro.



documentclassarticle
usepackagexparse

ExplSyntaxOn

NewDocumentCommandexpandlistom

ryanj_expandlist:n #2
IfNoValueTF #1

ryanj_expandlist_print:


ryanj_expandlist_store:N #1



tl_new:N l_ryan_expandlist_tl
seq_new:N l__ryan_expandlist_seq

cs_new_protected:Nn ryanj_expandlist:n

seq_clear:N l__ryan_expandlist_seq
clist_map_function:nN #1 __ryan_expandlist_item:n
tl_set:Nx l_ryan_expandlist_tl

seq_use:Nnnn l__ryan_expandlist_seq ~and~ ,~ ,~and~



cs_new_protected:Nn __ryan_expandlist_item:n

__ryan_expandlist_item:w #1 - - q_stop


cs_new_protected:Npn __ryan_expandlist_item:w #1 - #2 - #3 q_stop

tl_if_blank:nTF #2

seq_put_right:Nn l__ryan_expandlist_seq #1


int_step_inline:nnn #1 #2 seq_put_right:Nn l__ryan_expandlist_seq ##1



cs_new:Nn ryanj_expandlist_print:

tl_use:N l_ryan_expandlist_tl


cs_new_protected:Nn ryanj_expandlist_store:N

tl_if_exist:NF #1

tl_set_eq:NN #1 l_ryan_expandlist_tl



ExplSyntaxOff

begindocument

expandlist3-7, 9, 14, 52

expandlist1

expandlist1,4

expandlist1-2

expandlist[foo]3-7, 9, 14, 52

textttmeaningfoo

enddocument


enter image description here






share|improve this answer























    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "85"
    ;
    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: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    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%2ftex.stackexchange.com%2fquestions%2f494712%2fsmart-expansion-of-a-range-to-a-list-of-numbers%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    3 Answers
    3






    active

    oldest

    votes








    3 Answers
    3






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    2














    With a little bit of code you can make yourself a parser. I defined makeProblems<integer list><code> for you, in which <integer list> is a comma separated list of numbers where <x>-<y> is parsed as the list of integers between <x> and <y>, inclusive. The function parses the list of numbers and then iterates over the generated list, and makes the current number available for <code> as #1. For example:



    makeProblems1,3-7, 9, 14, 52Do something with #1.par


    prints:




    enter image description here




    The code is long because, as the function takes user input, the function takes extra care to make sure that the <integer list> doesn't contain wrong input.



    documentclassarticle
    usepackagexparse
    ExplSyntaxOn
    tl_new:N l_ryanj_list_tl
    NewDocumentCommand makeProblems m +m

    tl_clear:N l_ryanj_list_tl
    exp_args:Nx clist_map_function:nN #1 __ryanj_parse_item:n
    tl_map_inline:Nn l_ryanj_list_tl #2

    cs_new_protected:Npn __ryanj_add_item:n #1
    tl_put_right:Nn l_ryanj_list_tl #1
    cs_new_protected:Npn __ryanj_parse_item:n #1

    __ryanj_if_number:nTF #1
    __ryanj_add_item:n #1

    str_if_in:nnTF #1 -
    exp_args:Nf __ryanj_parse_range:n tl_to_str:n #1
    msg_error:nnn ryanj invalid-number #1


    cs_new_protected:Npn __ryanj_parse_range:n #1
    __ryanj_parse_range:nw #1 #1 q_mark
    cs_new_protected:Npn __ryanj_parse_range:nw #1#2-#3 q_mark

    __ryanj_validate_number:nn #1 #2
    __ryanj_validate_number:nn #1 #3
    int_step_function:nnnN #2 1 #3 __ryanj_add_item:n
    use_none:n q_stop

    cs_new_protected:Npn __ryanj_validate_number:nn #1 #2

    __ryanj_if_number:nF #2

    msg_error:nnnn ryanj invalid-number-in-range #2 #1
    use_none_delimit_by_q_stop:w


    msg_new:nnn ryanj invalid-range Invalid~range~`#1'.
    msg_new:nnn ryanj invalid-number Invalid~number~`#1'.
    msg_new:nnn ryanj invalid-number-in-range Invalid~number~`#1'~in~range~`#2'.
    prg_new_conditional:Npnn __ryanj_if_number:n #1 T, F, TF

    tl_if_empty:oTF
    tex_romannumeral:D - 0#1 exp_stop_f:

    tl_if_empty:nTF #1
    prg_return_false:
    prg_return_true:

    prg_return_false:

    % For older expl3:
    prg_set_protected_conditional:Npnn str_if_in:nn #1#2 T , F , TF

    use:x
    tl_if_in:nnTF tl_to_str:n #1 tl_to_str:n #2
    prg_return_true: prg_return_false:

    ExplSyntaxOff
    begindocument
    makeProblems1,3-7, 9, 14, 52Do something with #1.par
    enddocument





    share|improve this answer

























    • This looks great! Although copying and pasting this produces the errors Undefined control sequence ...3-7, 9, 14, 52}Do something with #1.par and Invalid number `3-7' ...3-7, 9, 14, 52}Do something with #1.par ... any edits maybe? Thanks again!

      – ryanj1823
      6 hours ago












    • @ryanj1823 You probably have some older version of the l3kernel. Could you upload the .log file somewhere for me to check? (pastebin.com, for example.)

      – Phelype Oleinik
      6 hours ago












    • pastebin.com/1euZ6R4n ...that should work, much appreciated

      – ryanj1823
      6 hours ago











    • @ryanj1823 Try it now. There were two expl3 functions which don't exist in your distribution (TeXLive 2017), so I adapted the code. (I can't test, though, so tell me if it doesn't work.)

      – Phelype Oleinik
      5 hours ago






    • 1





      @ryanj1823 Done. Now the command expands its argument before processing. Of course you can always expandaftermakeProblemsexpandafterDesiredProblems, but I think that's not exactly user-friendly.

      – Phelype Oleinik
      5 hours ago
















    2














    With a little bit of code you can make yourself a parser. I defined makeProblems<integer list><code> for you, in which <integer list> is a comma separated list of numbers where <x>-<y> is parsed as the list of integers between <x> and <y>, inclusive. The function parses the list of numbers and then iterates over the generated list, and makes the current number available for <code> as #1. For example:



    makeProblems1,3-7, 9, 14, 52Do something with #1.par


    prints:




    enter image description here




    The code is long because, as the function takes user input, the function takes extra care to make sure that the <integer list> doesn't contain wrong input.



    documentclassarticle
    usepackagexparse
    ExplSyntaxOn
    tl_new:N l_ryanj_list_tl
    NewDocumentCommand makeProblems m +m

    tl_clear:N l_ryanj_list_tl
    exp_args:Nx clist_map_function:nN #1 __ryanj_parse_item:n
    tl_map_inline:Nn l_ryanj_list_tl #2

    cs_new_protected:Npn __ryanj_add_item:n #1
    tl_put_right:Nn l_ryanj_list_tl #1
    cs_new_protected:Npn __ryanj_parse_item:n #1

    __ryanj_if_number:nTF #1
    __ryanj_add_item:n #1

    str_if_in:nnTF #1 -
    exp_args:Nf __ryanj_parse_range:n tl_to_str:n #1
    msg_error:nnn ryanj invalid-number #1


    cs_new_protected:Npn __ryanj_parse_range:n #1
    __ryanj_parse_range:nw #1 #1 q_mark
    cs_new_protected:Npn __ryanj_parse_range:nw #1#2-#3 q_mark

    __ryanj_validate_number:nn #1 #2
    __ryanj_validate_number:nn #1 #3
    int_step_function:nnnN #2 1 #3 __ryanj_add_item:n
    use_none:n q_stop

    cs_new_protected:Npn __ryanj_validate_number:nn #1 #2

    __ryanj_if_number:nF #2

    msg_error:nnnn ryanj invalid-number-in-range #2 #1
    use_none_delimit_by_q_stop:w


    msg_new:nnn ryanj invalid-range Invalid~range~`#1'.
    msg_new:nnn ryanj invalid-number Invalid~number~`#1'.
    msg_new:nnn ryanj invalid-number-in-range Invalid~number~`#1'~in~range~`#2'.
    prg_new_conditional:Npnn __ryanj_if_number:n #1 T, F, TF

    tl_if_empty:oTF
    tex_romannumeral:D - 0#1 exp_stop_f:

    tl_if_empty:nTF #1
    prg_return_false:
    prg_return_true:

    prg_return_false:

    % For older expl3:
    prg_set_protected_conditional:Npnn str_if_in:nn #1#2 T , F , TF

    use:x
    tl_if_in:nnTF tl_to_str:n #1 tl_to_str:n #2
    prg_return_true: prg_return_false:

    ExplSyntaxOff
    begindocument
    makeProblems1,3-7, 9, 14, 52Do something with #1.par
    enddocument





    share|improve this answer

























    • This looks great! Although copying and pasting this produces the errors Undefined control sequence ...3-7, 9, 14, 52}Do something with #1.par and Invalid number `3-7' ...3-7, 9, 14, 52}Do something with #1.par ... any edits maybe? Thanks again!

      – ryanj1823
      6 hours ago












    • @ryanj1823 You probably have some older version of the l3kernel. Could you upload the .log file somewhere for me to check? (pastebin.com, for example.)

      – Phelype Oleinik
      6 hours ago












    • pastebin.com/1euZ6R4n ...that should work, much appreciated

      – ryanj1823
      6 hours ago











    • @ryanj1823 Try it now. There were two expl3 functions which don't exist in your distribution (TeXLive 2017), so I adapted the code. (I can't test, though, so tell me if it doesn't work.)

      – Phelype Oleinik
      5 hours ago






    • 1





      @ryanj1823 Done. Now the command expands its argument before processing. Of course you can always expandaftermakeProblemsexpandafterDesiredProblems, but I think that's not exactly user-friendly.

      – Phelype Oleinik
      5 hours ago














    2












    2








    2







    With a little bit of code you can make yourself a parser. I defined makeProblems<integer list><code> for you, in which <integer list> is a comma separated list of numbers where <x>-<y> is parsed as the list of integers between <x> and <y>, inclusive. The function parses the list of numbers and then iterates over the generated list, and makes the current number available for <code> as #1. For example:



    makeProblems1,3-7, 9, 14, 52Do something with #1.par


    prints:




    enter image description here




    The code is long because, as the function takes user input, the function takes extra care to make sure that the <integer list> doesn't contain wrong input.



    documentclassarticle
    usepackagexparse
    ExplSyntaxOn
    tl_new:N l_ryanj_list_tl
    NewDocumentCommand makeProblems m +m

    tl_clear:N l_ryanj_list_tl
    exp_args:Nx clist_map_function:nN #1 __ryanj_parse_item:n
    tl_map_inline:Nn l_ryanj_list_tl #2

    cs_new_protected:Npn __ryanj_add_item:n #1
    tl_put_right:Nn l_ryanj_list_tl #1
    cs_new_protected:Npn __ryanj_parse_item:n #1

    __ryanj_if_number:nTF #1
    __ryanj_add_item:n #1

    str_if_in:nnTF #1 -
    exp_args:Nf __ryanj_parse_range:n tl_to_str:n #1
    msg_error:nnn ryanj invalid-number #1


    cs_new_protected:Npn __ryanj_parse_range:n #1
    __ryanj_parse_range:nw #1 #1 q_mark
    cs_new_protected:Npn __ryanj_parse_range:nw #1#2-#3 q_mark

    __ryanj_validate_number:nn #1 #2
    __ryanj_validate_number:nn #1 #3
    int_step_function:nnnN #2 1 #3 __ryanj_add_item:n
    use_none:n q_stop

    cs_new_protected:Npn __ryanj_validate_number:nn #1 #2

    __ryanj_if_number:nF #2

    msg_error:nnnn ryanj invalid-number-in-range #2 #1
    use_none_delimit_by_q_stop:w


    msg_new:nnn ryanj invalid-range Invalid~range~`#1'.
    msg_new:nnn ryanj invalid-number Invalid~number~`#1'.
    msg_new:nnn ryanj invalid-number-in-range Invalid~number~`#1'~in~range~`#2'.
    prg_new_conditional:Npnn __ryanj_if_number:n #1 T, F, TF

    tl_if_empty:oTF
    tex_romannumeral:D - 0#1 exp_stop_f:

    tl_if_empty:nTF #1
    prg_return_false:
    prg_return_true:

    prg_return_false:

    % For older expl3:
    prg_set_protected_conditional:Npnn str_if_in:nn #1#2 T , F , TF

    use:x
    tl_if_in:nnTF tl_to_str:n #1 tl_to_str:n #2
    prg_return_true: prg_return_false:

    ExplSyntaxOff
    begindocument
    makeProblems1,3-7, 9, 14, 52Do something with #1.par
    enddocument





    share|improve this answer















    With a little bit of code you can make yourself a parser. I defined makeProblems<integer list><code> for you, in which <integer list> is a comma separated list of numbers where <x>-<y> is parsed as the list of integers between <x> and <y>, inclusive. The function parses the list of numbers and then iterates over the generated list, and makes the current number available for <code> as #1. For example:



    makeProblems1,3-7, 9, 14, 52Do something with #1.par


    prints:




    enter image description here




    The code is long because, as the function takes user input, the function takes extra care to make sure that the <integer list> doesn't contain wrong input.



    documentclassarticle
    usepackagexparse
    ExplSyntaxOn
    tl_new:N l_ryanj_list_tl
    NewDocumentCommand makeProblems m +m

    tl_clear:N l_ryanj_list_tl
    exp_args:Nx clist_map_function:nN #1 __ryanj_parse_item:n
    tl_map_inline:Nn l_ryanj_list_tl #2

    cs_new_protected:Npn __ryanj_add_item:n #1
    tl_put_right:Nn l_ryanj_list_tl #1
    cs_new_protected:Npn __ryanj_parse_item:n #1

    __ryanj_if_number:nTF #1
    __ryanj_add_item:n #1

    str_if_in:nnTF #1 -
    exp_args:Nf __ryanj_parse_range:n tl_to_str:n #1
    msg_error:nnn ryanj invalid-number #1


    cs_new_protected:Npn __ryanj_parse_range:n #1
    __ryanj_parse_range:nw #1 #1 q_mark
    cs_new_protected:Npn __ryanj_parse_range:nw #1#2-#3 q_mark

    __ryanj_validate_number:nn #1 #2
    __ryanj_validate_number:nn #1 #3
    int_step_function:nnnN #2 1 #3 __ryanj_add_item:n
    use_none:n q_stop

    cs_new_protected:Npn __ryanj_validate_number:nn #1 #2

    __ryanj_if_number:nF #2

    msg_error:nnnn ryanj invalid-number-in-range #2 #1
    use_none_delimit_by_q_stop:w


    msg_new:nnn ryanj invalid-range Invalid~range~`#1'.
    msg_new:nnn ryanj invalid-number Invalid~number~`#1'.
    msg_new:nnn ryanj invalid-number-in-range Invalid~number~`#1'~in~range~`#2'.
    prg_new_conditional:Npnn __ryanj_if_number:n #1 T, F, TF

    tl_if_empty:oTF
    tex_romannumeral:D - 0#1 exp_stop_f:

    tl_if_empty:nTF #1
    prg_return_false:
    prg_return_true:

    prg_return_false:

    % For older expl3:
    prg_set_protected_conditional:Npnn str_if_in:nn #1#2 T , F , TF

    use:x
    tl_if_in:nnTF tl_to_str:n #1 tl_to_str:n #2
    prg_return_true: prg_return_false:

    ExplSyntaxOff
    begindocument
    makeProblems1,3-7, 9, 14, 52Do something with #1.par
    enddocument






    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited 5 hours ago

























    answered 7 hours ago









    Phelype OleinikPhelype Oleinik

    29.4k64896




    29.4k64896












    • This looks great! Although copying and pasting this produces the errors Undefined control sequence ...3-7, 9, 14, 52}Do something with #1.par and Invalid number `3-7' ...3-7, 9, 14, 52}Do something with #1.par ... any edits maybe? Thanks again!

      – ryanj1823
      6 hours ago












    • @ryanj1823 You probably have some older version of the l3kernel. Could you upload the .log file somewhere for me to check? (pastebin.com, for example.)

      – Phelype Oleinik
      6 hours ago












    • pastebin.com/1euZ6R4n ...that should work, much appreciated

      – ryanj1823
      6 hours ago











    • @ryanj1823 Try it now. There were two expl3 functions which don't exist in your distribution (TeXLive 2017), so I adapted the code. (I can't test, though, so tell me if it doesn't work.)

      – Phelype Oleinik
      5 hours ago






    • 1





      @ryanj1823 Done. Now the command expands its argument before processing. Of course you can always expandaftermakeProblemsexpandafterDesiredProblems, but I think that's not exactly user-friendly.

      – Phelype Oleinik
      5 hours ago


















    • This looks great! Although copying and pasting this produces the errors Undefined control sequence ...3-7, 9, 14, 52}Do something with #1.par and Invalid number `3-7' ...3-7, 9, 14, 52}Do something with #1.par ... any edits maybe? Thanks again!

      – ryanj1823
      6 hours ago












    • @ryanj1823 You probably have some older version of the l3kernel. Could you upload the .log file somewhere for me to check? (pastebin.com, for example.)

      – Phelype Oleinik
      6 hours ago












    • pastebin.com/1euZ6R4n ...that should work, much appreciated

      – ryanj1823
      6 hours ago











    • @ryanj1823 Try it now. There were two expl3 functions which don't exist in your distribution (TeXLive 2017), so I adapted the code. (I can't test, though, so tell me if it doesn't work.)

      – Phelype Oleinik
      5 hours ago






    • 1





      @ryanj1823 Done. Now the command expands its argument before processing. Of course you can always expandaftermakeProblemsexpandafterDesiredProblems, but I think that's not exactly user-friendly.

      – Phelype Oleinik
      5 hours ago

















    This looks great! Although copying and pasting this produces the errors Undefined control sequence ...3-7, 9, 14, 52}Do something with #1.par and Invalid number `3-7' ...3-7, 9, 14, 52}Do something with #1.par ... any edits maybe? Thanks again!

    – ryanj1823
    6 hours ago






    This looks great! Although copying and pasting this produces the errors Undefined control sequence ...3-7, 9, 14, 52}Do something with #1.par and Invalid number `3-7' ...3-7, 9, 14, 52}Do something with #1.par ... any edits maybe? Thanks again!

    – ryanj1823
    6 hours ago














    @ryanj1823 You probably have some older version of the l3kernel. Could you upload the .log file somewhere for me to check? (pastebin.com, for example.)

    – Phelype Oleinik
    6 hours ago






    @ryanj1823 You probably have some older version of the l3kernel. Could you upload the .log file somewhere for me to check? (pastebin.com, for example.)

    – Phelype Oleinik
    6 hours ago














    pastebin.com/1euZ6R4n ...that should work, much appreciated

    – ryanj1823
    6 hours ago





    pastebin.com/1euZ6R4n ...that should work, much appreciated

    – ryanj1823
    6 hours ago













    @ryanj1823 Try it now. There were two expl3 functions which don't exist in your distribution (TeXLive 2017), so I adapted the code. (I can't test, though, so tell me if it doesn't work.)

    – Phelype Oleinik
    5 hours ago





    @ryanj1823 Try it now. There were two expl3 functions which don't exist in your distribution (TeXLive 2017), so I adapted the code. (I can't test, though, so tell me if it doesn't work.)

    – Phelype Oleinik
    5 hours ago




    1




    1





    @ryanj1823 Done. Now the command expands its argument before processing. Of course you can always expandaftermakeProblemsexpandafterDesiredProblems, but I think that's not exactly user-friendly.

    – Phelype Oleinik
    5 hours ago






    @ryanj1823 Done. Now the command expands its argument before processing. Of course you can always expandaftermakeProblemsexpandafterDesiredProblems, but I think that's not exactly user-friendly.

    – Phelype Oleinik
    5 hours ago












    2














    documentclassarticle
    usepackagelistofitems,pgffor
    newcommandmakeProblems[2]%
    setsepchar,/-%
    readlist*numlist#1%
    defz##1#2par%
    foreachitemzzinnumlist[]%
    ifnumlistlennumlist[zzcnt]=1relaxzzzelse
    itemtomacronumlist[zzcnt,1]tmpA
    itemtomacronumlist[zzcnt,2]tmpB
    foreachzzz in tmpA,...,tmpB%
    zzzz%
    fi
    %

    begindocument
    makeProblems1,3-7, 9, 14-16, 52Do something with #1.
    enddocument


    enter image description here






    share|improve this answer























    • This works great too! Thanks!

      – ryanj1823
      5 hours ago















    2














    documentclassarticle
    usepackagelistofitems,pgffor
    newcommandmakeProblems[2]%
    setsepchar,/-%
    readlist*numlist#1%
    defz##1#2par%
    foreachitemzzinnumlist[]%
    ifnumlistlennumlist[zzcnt]=1relaxzzzelse
    itemtomacronumlist[zzcnt,1]tmpA
    itemtomacronumlist[zzcnt,2]tmpB
    foreachzzz in tmpA,...,tmpB%
    zzzz%
    fi
    %

    begindocument
    makeProblems1,3-7, 9, 14-16, 52Do something with #1.
    enddocument


    enter image description here






    share|improve this answer























    • This works great too! Thanks!

      – ryanj1823
      5 hours ago













    2












    2








    2







    documentclassarticle
    usepackagelistofitems,pgffor
    newcommandmakeProblems[2]%
    setsepchar,/-%
    readlist*numlist#1%
    defz##1#2par%
    foreachitemzzinnumlist[]%
    ifnumlistlennumlist[zzcnt]=1relaxzzzelse
    itemtomacronumlist[zzcnt,1]tmpA
    itemtomacronumlist[zzcnt,2]tmpB
    foreachzzz in tmpA,...,tmpB%
    zzzz%
    fi
    %

    begindocument
    makeProblems1,3-7, 9, 14-16, 52Do something with #1.
    enddocument


    enter image description here






    share|improve this answer













    documentclassarticle
    usepackagelistofitems,pgffor
    newcommandmakeProblems[2]%
    setsepchar,/-%
    readlist*numlist#1%
    defz##1#2par%
    foreachitemzzinnumlist[]%
    ifnumlistlennumlist[zzcnt]=1relaxzzzelse
    itemtomacronumlist[zzcnt,1]tmpA
    itemtomacronumlist[zzcnt,2]tmpB
    foreachzzz in tmpA,...,tmpB%
    zzzz%
    fi
    %

    begindocument
    makeProblems1,3-7, 9, 14-16, 52Do something with #1.
    enddocument


    enter image description here







    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered 5 hours ago









    Steven B. SegletesSteven B. Segletes

    166k9210427




    166k9210427












    • This works great too! Thanks!

      – ryanj1823
      5 hours ago

















    • This works great too! Thanks!

      – ryanj1823
      5 hours ago
















    This works great too! Thanks!

    – ryanj1823
    5 hours ago





    This works great too! Thanks!

    – ryanj1823
    5 hours ago











    1














    I map the given comma separated list; each item is examined and if it contains a hyphen, a loop is done; in any case, an integer is added to a sequence.



    Finally the sequence is expanded with separators between the items; optionally this token list is saved to a macro.



    documentclassarticle
    usepackagexparse

    ExplSyntaxOn

    NewDocumentCommandexpandlistom

    ryanj_expandlist:n #2
    IfNoValueTF #1

    ryanj_expandlist_print:


    ryanj_expandlist_store:N #1



    tl_new:N l_ryan_expandlist_tl
    seq_new:N l__ryan_expandlist_seq

    cs_new_protected:Nn ryanj_expandlist:n

    seq_clear:N l__ryan_expandlist_seq
    clist_map_function:nN #1 __ryan_expandlist_item:n
    tl_set:Nx l_ryan_expandlist_tl

    seq_use:Nnnn l__ryan_expandlist_seq ~and~ ,~ ,~and~



    cs_new_protected:Nn __ryan_expandlist_item:n

    __ryan_expandlist_item:w #1 - - q_stop


    cs_new_protected:Npn __ryan_expandlist_item:w #1 - #2 - #3 q_stop

    tl_if_blank:nTF #2

    seq_put_right:Nn l__ryan_expandlist_seq #1


    int_step_inline:nnn #1 #2 seq_put_right:Nn l__ryan_expandlist_seq ##1



    cs_new:Nn ryanj_expandlist_print:

    tl_use:N l_ryan_expandlist_tl


    cs_new_protected:Nn ryanj_expandlist_store:N

    tl_if_exist:NF #1

    tl_set_eq:NN #1 l_ryan_expandlist_tl



    ExplSyntaxOff

    begindocument

    expandlist3-7, 9, 14, 52

    expandlist1

    expandlist1,4

    expandlist1-2

    expandlist[foo]3-7, 9, 14, 52

    textttmeaningfoo

    enddocument


    enter image description here






    share|improve this answer



























      1














      I map the given comma separated list; each item is examined and if it contains a hyphen, a loop is done; in any case, an integer is added to a sequence.



      Finally the sequence is expanded with separators between the items; optionally this token list is saved to a macro.



      documentclassarticle
      usepackagexparse

      ExplSyntaxOn

      NewDocumentCommandexpandlistom

      ryanj_expandlist:n #2
      IfNoValueTF #1

      ryanj_expandlist_print:


      ryanj_expandlist_store:N #1



      tl_new:N l_ryan_expandlist_tl
      seq_new:N l__ryan_expandlist_seq

      cs_new_protected:Nn ryanj_expandlist:n

      seq_clear:N l__ryan_expandlist_seq
      clist_map_function:nN #1 __ryan_expandlist_item:n
      tl_set:Nx l_ryan_expandlist_tl

      seq_use:Nnnn l__ryan_expandlist_seq ~and~ ,~ ,~and~



      cs_new_protected:Nn __ryan_expandlist_item:n

      __ryan_expandlist_item:w #1 - - q_stop


      cs_new_protected:Npn __ryan_expandlist_item:w #1 - #2 - #3 q_stop

      tl_if_blank:nTF #2

      seq_put_right:Nn l__ryan_expandlist_seq #1


      int_step_inline:nnn #1 #2 seq_put_right:Nn l__ryan_expandlist_seq ##1



      cs_new:Nn ryanj_expandlist_print:

      tl_use:N l_ryan_expandlist_tl


      cs_new_protected:Nn ryanj_expandlist_store:N

      tl_if_exist:NF #1

      tl_set_eq:NN #1 l_ryan_expandlist_tl



      ExplSyntaxOff

      begindocument

      expandlist3-7, 9, 14, 52

      expandlist1

      expandlist1,4

      expandlist1-2

      expandlist[foo]3-7, 9, 14, 52

      textttmeaningfoo

      enddocument


      enter image description here






      share|improve this answer

























        1












        1








        1







        I map the given comma separated list; each item is examined and if it contains a hyphen, a loop is done; in any case, an integer is added to a sequence.



        Finally the sequence is expanded with separators between the items; optionally this token list is saved to a macro.



        documentclassarticle
        usepackagexparse

        ExplSyntaxOn

        NewDocumentCommandexpandlistom

        ryanj_expandlist:n #2
        IfNoValueTF #1

        ryanj_expandlist_print:


        ryanj_expandlist_store:N #1



        tl_new:N l_ryan_expandlist_tl
        seq_new:N l__ryan_expandlist_seq

        cs_new_protected:Nn ryanj_expandlist:n

        seq_clear:N l__ryan_expandlist_seq
        clist_map_function:nN #1 __ryan_expandlist_item:n
        tl_set:Nx l_ryan_expandlist_tl

        seq_use:Nnnn l__ryan_expandlist_seq ~and~ ,~ ,~and~



        cs_new_protected:Nn __ryan_expandlist_item:n

        __ryan_expandlist_item:w #1 - - q_stop


        cs_new_protected:Npn __ryan_expandlist_item:w #1 - #2 - #3 q_stop

        tl_if_blank:nTF #2

        seq_put_right:Nn l__ryan_expandlist_seq #1


        int_step_inline:nnn #1 #2 seq_put_right:Nn l__ryan_expandlist_seq ##1



        cs_new:Nn ryanj_expandlist_print:

        tl_use:N l_ryan_expandlist_tl


        cs_new_protected:Nn ryanj_expandlist_store:N

        tl_if_exist:NF #1

        tl_set_eq:NN #1 l_ryan_expandlist_tl



        ExplSyntaxOff

        begindocument

        expandlist3-7, 9, 14, 52

        expandlist1

        expandlist1,4

        expandlist1-2

        expandlist[foo]3-7, 9, 14, 52

        textttmeaningfoo

        enddocument


        enter image description here






        share|improve this answer













        I map the given comma separated list; each item is examined and if it contains a hyphen, a loop is done; in any case, an integer is added to a sequence.



        Finally the sequence is expanded with separators between the items; optionally this token list is saved to a macro.



        documentclassarticle
        usepackagexparse

        ExplSyntaxOn

        NewDocumentCommandexpandlistom

        ryanj_expandlist:n #2
        IfNoValueTF #1

        ryanj_expandlist_print:


        ryanj_expandlist_store:N #1



        tl_new:N l_ryan_expandlist_tl
        seq_new:N l__ryan_expandlist_seq

        cs_new_protected:Nn ryanj_expandlist:n

        seq_clear:N l__ryan_expandlist_seq
        clist_map_function:nN #1 __ryan_expandlist_item:n
        tl_set:Nx l_ryan_expandlist_tl

        seq_use:Nnnn l__ryan_expandlist_seq ~and~ ,~ ,~and~



        cs_new_protected:Nn __ryan_expandlist_item:n

        __ryan_expandlist_item:w #1 - - q_stop


        cs_new_protected:Npn __ryan_expandlist_item:w #1 - #2 - #3 q_stop

        tl_if_blank:nTF #2

        seq_put_right:Nn l__ryan_expandlist_seq #1


        int_step_inline:nnn #1 #2 seq_put_right:Nn l__ryan_expandlist_seq ##1



        cs_new:Nn ryanj_expandlist_print:

        tl_use:N l_ryan_expandlist_tl


        cs_new_protected:Nn ryanj_expandlist_store:N

        tl_if_exist:NF #1

        tl_set_eq:NN #1 l_ryan_expandlist_tl



        ExplSyntaxOff

        begindocument

        expandlist3-7, 9, 14, 52

        expandlist1

        expandlist1,4

        expandlist1-2

        expandlist[foo]3-7, 9, 14, 52

        textttmeaningfoo

        enddocument


        enter image description here







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 4 hours ago









        egregegreg

        747k8919543295




        747k8919543295



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to TeX - LaTeX Stack Exchange!


            • 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%2ftex.stackexchange.com%2fquestions%2f494712%2fsmart-expansion-of-a-range-to-a-list-of-numbers%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

            Invision Community Contents History See also References External links Navigation menuProprietaryinvisioncommunity.comIPS Community ForumsIPS Community Forumsthis blog entry"License Changes, IP.Board 3.4, and the Future""Interview -- Matt Mecham of Ibforums""CEO Invision Power Board, Matt Mecham Is a Liar, Thief!"IPB License Explanation 1.3, 1.3.1, 2.0, and 2.1ArchivedSecurity Fixes, Updates And Enhancements For IPB 1.3.1Archived"New Demo Accounts - Invision Power Services"the original"New Default Skin"the original"Invision Power Board 3.0.0 and Applications Released"the original"Archived copy"the original"Perpetual licenses being done away with""Release Notes - Invision Power Services""Introducing: IPS Community Suite 4!"Invision Community Release Notes

            Canceling a color specificationRandomly assigning color to Graphics3D objects?Default color for Filling in Mathematica 9Coloring specific elements of sets with a prime modified order in an array plotHow to pick a color differing significantly from the colors already in a given color list?Detection of the text colorColor numbers based on their valueCan color schemes for use with ColorData include opacity specification?My dynamic color schemes

            Tom Holland Mục lục Đầu đời và giáo dục | Sự nghiệp | Cuộc sống cá nhân | Phim tham gia | Giải thưởng và đề cử | Chú thích | Liên kết ngoài | Trình đơn chuyển hướngProfile“Person Details for Thomas Stanley Holland, "England and Wales Birth Registration Index, 1837-2008" — FamilySearch.org”"Meet Tom Holland... the 16-year-old star of The Impossible""Schoolboy actor Tom Holland finds himself in Oscar contention for role in tsunami drama"“Naomi Watts on the Prince William and Harry's reaction to her film about the late Princess Diana”lưu trữ"Holland and Pflueger Are West End's Two New 'Billy Elliots'""I'm so envious of my son, the movie star! British writer Dominic Holland's spent 20 years trying to crack Hollywood - but he's been beaten to it by a very unlikely rival"“Richard and Margaret Povey of Jersey, Channel Islands, UK: Information about Thomas Stanley Holland”"Tom Holland to play Billy Elliot""New Billy Elliot leaving the garage"Billy Elliot the Musical - Tom Holland - Billy"A Tale of four Billys: Tom Holland""The Feel Good Factor""Thames Christian College schoolboys join Myleene Klass for The Feelgood Factor""Government launches £600,000 arts bursaries pilot""BILLY's Chapman, Holland, Gardner & Jackson-Keen Visit Prime Minister""Elton John 'blown away' by Billy Elliot fifth birthday" (video with John's interview and fragments of Holland's performance)"First News interviews Arrietty's Tom Holland"“33rd Critics' Circle Film Awards winners”“National Board of Review Current Awards”Bản gốc"Ron Howard Whaling Tale 'In The Heart Of The Sea' Casts Tom Holland"“'Spider-Man' Finds Tom Holland to Star as New Web-Slinger”lưu trữ“Captain America: Civil War (2016)”“Film Review: ‘Captain America: Civil War’”lưu trữ“‘Captain America: Civil War’ review: Choose your own avenger”lưu trữ“The Lost City of Z reviews”“Sony Pictures and Marvel Studios Find Their 'Spider-Man' Star and Director”“‘Mary Magdalene’, ‘Current War’ & ‘Wind River’ Get 2017 Release Dates From Weinstein”“Lionsgate Unleashing Daisy Ridley & Tom Holland Starrer ‘Chaos Walking’ In Cannes”“PTA's 'Master' Leads Chicago Film Critics Nominations, UPDATED: Houston and Indiana Critics Nominations”“Nominaciones Goya 2013 Telecinco Cinema – ENG”“Jameson Empire Film Awards: Martin Freeman wins best actor for performance in The Hobbit”“34th Annual Young Artist Awards”Bản gốc“Teen Choice Awards 2016—Captain America: Civil War Leads Second Wave of Nominations”“BAFTA Film Award Nominations: ‘La La Land’ Leads Race”“Saturn Awards Nominations 2017: 'Rogue One,' 'Walking Dead' Lead”Tom HollandTom HollandTom HollandTom Hollandmedia.gettyimages.comWorldCat Identities300279794no20130442900000 0004 0355 42791085670554170004732cb16706349t(data)XX5557367