How to check if comma list is empty?How to process a comma separated list?Sorting Comma Separated Lists defined with, or without macroEmulating @ifnextchar in expl3Check if a number is in a comma separated list (print or display selected sections from a specific list)Extract from a token containing a list with math contentHow to test whether pic text is empty in TiKZ?Membership check on comma separated listHow to sort a comma separated list?expl3 read a comma list from fileHow to suppress comma list from outputting its values on declaration?

To whom did Varys write those letters in Game of Thrones S8E5?

Which creature is depicted in this Xanathar's Guide illustration of a war mage?

​Cuban​ ​Primes

What do you call the hair or body hair you trim off your body?

Single word that parallels "Recent" when discussing the near future

What color to choose as "danger" if the main color of my app is red

Can my American children re-enter the USA by International flight with a passport card? Being that their passport book has expired

Why commonly or frequently used fonts sizes are even numbers like 10px, 12px, 16px, 24px, or 32px?

How to check if comma list is empty?

Does addError() work outside of triggers?

Using chord iii in a chord progression (major key)

Does the wearer know what items are in which patch in the Robe of Useful items?

What is the effect of the Feeblemind spell on Ability Score Improvements?

How to redirect stdout to a file, and stdout+stderr to another one?

Was the dragon prowess intentionally downplayed in S08E04?

What metal is most suitable for a ladder submerged in an underground water tank?

When did game consoles begin including FPUs?

UUID type for NEWID()

Why is the Advance Variation considered strong vs the Caro-Kann but not vs the Scandinavian?

Wireless headphones interfere with Wi-Fi signal on laptop

How do I know which cipher suites can be disabled?

Promotion comes with unexpected 24/7/365 on-call

Why did the UK remove the 'European Union' from its passport?

Can I say: "When was your train leaving?" if the train leaves in the future?



How to check if comma list is empty?


How to process a comma separated list?Sorting Comma Separated Lists defined with, or without macroEmulating @ifnextchar in expl3Check if a number is in a comma separated list (print or display selected sections from a specific list)Extract from a token containing a list with math contentHow to test whether pic text is empty in TiKZ?Membership check on comma separated listHow to sort a comma separated list?expl3 read a comma list from fileHow to suppress comma list from outputting its values on declaration?













1















How do I check if myList is empty? Following (is my attempt) prints "NOT empty" when, in fact, the list is empty.



documentclassstandalone
usepackageexpl3
begindocument
ExplSyntaxOn
clist_new:NmyList
clist_set:NnmyList
cs_if_eq:NNTFmyListEMPTYNOT empty
ExplSyntaxOff
enddocument


EDIT: I found a way to do so (below) but would like you to share another approach (it's interesting to see how else it can be done):



 clist_new:NmyList
clist_new:NemptyList
clist_set:NnmyList % assign "emptiness" to the list (although it had already been empty to begin with)
cs_if_eq:NNTFmyListemptyListEMPTYNOT empty









share|improve this question



















  • 3





    clist_if_empty:NTF.

    – Ulrike Fischer
    4 hours ago






  • 2





    What Ulrike said, plus the “proper” way to make a clist empty is clist_clear:N myList. (Deep down is basically the same, but exist for semantics).

    – Phelype Oleinik
    4 hours ago















1















How do I check if myList is empty? Following (is my attempt) prints "NOT empty" when, in fact, the list is empty.



documentclassstandalone
usepackageexpl3
begindocument
ExplSyntaxOn
clist_new:NmyList
clist_set:NnmyList
cs_if_eq:NNTFmyListEMPTYNOT empty
ExplSyntaxOff
enddocument


EDIT: I found a way to do so (below) but would like you to share another approach (it's interesting to see how else it can be done):



 clist_new:NmyList
clist_new:NemptyList
clist_set:NnmyList % assign "emptiness" to the list (although it had already been empty to begin with)
cs_if_eq:NNTFmyListemptyListEMPTYNOT empty









share|improve this question



















  • 3





    clist_if_empty:NTF.

    – Ulrike Fischer
    4 hours ago






  • 2





    What Ulrike said, plus the “proper” way to make a clist empty is clist_clear:N myList. (Deep down is basically the same, but exist for semantics).

    – Phelype Oleinik
    4 hours ago













1












1








1








How do I check if myList is empty? Following (is my attempt) prints "NOT empty" when, in fact, the list is empty.



documentclassstandalone
usepackageexpl3
begindocument
ExplSyntaxOn
clist_new:NmyList
clist_set:NnmyList
cs_if_eq:NNTFmyListEMPTYNOT empty
ExplSyntaxOff
enddocument


EDIT: I found a way to do so (below) but would like you to share another approach (it's interesting to see how else it can be done):



 clist_new:NmyList
clist_new:NemptyList
clist_set:NnmyList % assign "emptiness" to the list (although it had already been empty to begin with)
cs_if_eq:NNTFmyListemptyListEMPTYNOT empty









share|improve this question
















How do I check if myList is empty? Following (is my attempt) prints "NOT empty" when, in fact, the list is empty.



documentclassstandalone
usepackageexpl3
begindocument
ExplSyntaxOn
clist_new:NmyList
clist_set:NnmyList
cs_if_eq:NNTFmyListEMPTYNOT empty
ExplSyntaxOff
enddocument


EDIT: I found a way to do so (below) but would like you to share another approach (it's interesting to see how else it can be done):



 clist_new:NmyList
clist_new:NemptyList
clist_set:NnmyList % assign "emptiness" to the list (although it had already been empty to begin with)
cs_if_eq:NNTFmyListemptyListEMPTYNOT empty






conditionals expl3 latex3 comma-separated-list






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 5 hours ago







bp2017

















asked 5 hours ago









bp2017bp2017

920116




920116







  • 3





    clist_if_empty:NTF.

    – Ulrike Fischer
    4 hours ago






  • 2





    What Ulrike said, plus the “proper” way to make a clist empty is clist_clear:N myList. (Deep down is basically the same, but exist for semantics).

    – Phelype Oleinik
    4 hours ago












  • 3





    clist_if_empty:NTF.

    – Ulrike Fischer
    4 hours ago






  • 2





    What Ulrike said, plus the “proper” way to make a clist empty is clist_clear:N myList. (Deep down is basically the same, but exist for semantics).

    – Phelype Oleinik
    4 hours ago







3




3





clist_if_empty:NTF.

– Ulrike Fischer
4 hours ago





clist_if_empty:NTF.

– Ulrike Fischer
4 hours ago




2




2





What Ulrike said, plus the “proper” way to make a clist empty is clist_clear:N myList. (Deep down is basically the same, but exist for semantics).

– Phelype Oleinik
4 hours ago





What Ulrike said, plus the “proper” way to make a clist empty is clist_clear:N myList. (Deep down is basically the same, but exist for semantics).

– Phelype Oleinik
4 hours ago










2 Answers
2






active

oldest

votes


















4














documentclassstandalone
usepackageexpl3
begindocument
ExplSyntaxOn
clist_new:NmyList
clist_set:NnmyList
clist_if_empty:NTF myList EMPTY NOT EMPTY
ExplSyntaxOff
enddocument


run texdoc l3clist






share|improve this answer























  • How can I use AND (&&) during this clist_if_empty check to also perform check on additional list (or on something else) in one directive?

    – bp2017
    4 hours ago







  • 1





    See bool_if:nTF or (better) e.g. bool_lazy_or:nnTF, all in interface3.

    – Joseph Wright
    4 hours ago











  • @JosephWright, thank you. I've seen those and read a bit about them but I have no idea how to combine them with a conditional statement like clist_if_empty. I'll take a look again and see if I can find this information this time.

    – bp2017
    4 hours ago






  • 1





    @bp2017 You can always use the c-type variants, e..g clist_new:c myList2 . Note though that there is no escaping the catcode and token basis of TeX. Also note that standard expl3 style would be l_bp_mylist_clist or similar.

    – Joseph Wright
    3 hours ago






  • 1





    @bp2017 You want the predicates: clist_if_empty_p:N, and so on

    – Joseph Wright
    3 hours ago


















6














The test you want is clist_if_empty:N(TF): each data type has an appropriate test for emptiness or similar. These are defined such that they are 'aware' of the internal nature of data types (for example an empty prop is not entirely empty at the macro level).



Your cs_if_empty:NN(TF) test is wrong as the second argument you have given is no N type (a single token), but is rather n-type (in this case, an empty token list). You could in this case do a low-level test, for example



cs_if_eq:NN(TF) myList c_empty_clist <true> <false> 


or by expanding the list to a 'raw' token list



tl_if_blank:V(TF) c_empty_clist <true> <false> 





share|improve this answer























  • There is a style in tikzset named myStyle, I tried to pass #1 of that style (which contains all the arguments passed to the style, supplied through a node or a path directive which calls that style with or without arguments) inside /utils/exec as clist_set:NnmyList#1. But for some reason when the style is used with no arguments (like path node[myStyle];), the list is NOT empty (it's empty only when path node[myStyle=];). I'm trying to figure out why I get such result (and trying to look what #1 contains in this case, but having difficulties so far).

    – bp2017
    4 hours ago







  • 1





    @bp2017 There is some 'back end' in pgf that may be responsible, but I'd be tempted just to showtokens the input #1.

    – Joseph Wright
    4 hours ago











  • Great! Here is the answer: showtokens pgfkeysnovalue . So I'll be checking against this pgfkeysnovalue in case no arguments were supplied at all.

    – bp2017
    4 hours ago












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%2f490862%2fhow-to-check-if-comma-list-is-empty%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









4














documentclassstandalone
usepackageexpl3
begindocument
ExplSyntaxOn
clist_new:NmyList
clist_set:NnmyList
clist_if_empty:NTF myList EMPTY NOT EMPTY
ExplSyntaxOff
enddocument


run texdoc l3clist






share|improve this answer























  • How can I use AND (&&) during this clist_if_empty check to also perform check on additional list (or on something else) in one directive?

    – bp2017
    4 hours ago







  • 1





    See bool_if:nTF or (better) e.g. bool_lazy_or:nnTF, all in interface3.

    – Joseph Wright
    4 hours ago











  • @JosephWright, thank you. I've seen those and read a bit about them but I have no idea how to combine them with a conditional statement like clist_if_empty. I'll take a look again and see if I can find this information this time.

    – bp2017
    4 hours ago






  • 1





    @bp2017 You can always use the c-type variants, e..g clist_new:c myList2 . Note though that there is no escaping the catcode and token basis of TeX. Also note that standard expl3 style would be l_bp_mylist_clist or similar.

    – Joseph Wright
    3 hours ago






  • 1





    @bp2017 You want the predicates: clist_if_empty_p:N, and so on

    – Joseph Wright
    3 hours ago















4














documentclassstandalone
usepackageexpl3
begindocument
ExplSyntaxOn
clist_new:NmyList
clist_set:NnmyList
clist_if_empty:NTF myList EMPTY NOT EMPTY
ExplSyntaxOff
enddocument


run texdoc l3clist






share|improve this answer























  • How can I use AND (&&) during this clist_if_empty check to also perform check on additional list (or on something else) in one directive?

    – bp2017
    4 hours ago







  • 1





    See bool_if:nTF or (better) e.g. bool_lazy_or:nnTF, all in interface3.

    – Joseph Wright
    4 hours ago











  • @JosephWright, thank you. I've seen those and read a bit about them but I have no idea how to combine them with a conditional statement like clist_if_empty. I'll take a look again and see if I can find this information this time.

    – bp2017
    4 hours ago






  • 1





    @bp2017 You can always use the c-type variants, e..g clist_new:c myList2 . Note though that there is no escaping the catcode and token basis of TeX. Also note that standard expl3 style would be l_bp_mylist_clist or similar.

    – Joseph Wright
    3 hours ago






  • 1





    @bp2017 You want the predicates: clist_if_empty_p:N, and so on

    – Joseph Wright
    3 hours ago













4












4








4







documentclassstandalone
usepackageexpl3
begindocument
ExplSyntaxOn
clist_new:NmyList
clist_set:NnmyList
clist_if_empty:NTF myList EMPTY NOT EMPTY
ExplSyntaxOff
enddocument


run texdoc l3clist






share|improve this answer













documentclassstandalone
usepackageexpl3
begindocument
ExplSyntaxOn
clist_new:NmyList
clist_set:NnmyList
clist_if_empty:NTF myList EMPTY NOT EMPTY
ExplSyntaxOff
enddocument


run texdoc l3clist







share|improve this answer












share|improve this answer



share|improve this answer










answered 4 hours ago









Red-CloudRed-Cloud

2,04312




2,04312












  • How can I use AND (&&) during this clist_if_empty check to also perform check on additional list (or on something else) in one directive?

    – bp2017
    4 hours ago







  • 1





    See bool_if:nTF or (better) e.g. bool_lazy_or:nnTF, all in interface3.

    – Joseph Wright
    4 hours ago











  • @JosephWright, thank you. I've seen those and read a bit about them but I have no idea how to combine them with a conditional statement like clist_if_empty. I'll take a look again and see if I can find this information this time.

    – bp2017
    4 hours ago






  • 1





    @bp2017 You can always use the c-type variants, e..g clist_new:c myList2 . Note though that there is no escaping the catcode and token basis of TeX. Also note that standard expl3 style would be l_bp_mylist_clist or similar.

    – Joseph Wright
    3 hours ago






  • 1





    @bp2017 You want the predicates: clist_if_empty_p:N, and so on

    – Joseph Wright
    3 hours ago

















  • How can I use AND (&&) during this clist_if_empty check to also perform check on additional list (or on something else) in one directive?

    – bp2017
    4 hours ago







  • 1





    See bool_if:nTF or (better) e.g. bool_lazy_or:nnTF, all in interface3.

    – Joseph Wright
    4 hours ago











  • @JosephWright, thank you. I've seen those and read a bit about them but I have no idea how to combine them with a conditional statement like clist_if_empty. I'll take a look again and see if I can find this information this time.

    – bp2017
    4 hours ago






  • 1





    @bp2017 You can always use the c-type variants, e..g clist_new:c myList2 . Note though that there is no escaping the catcode and token basis of TeX. Also note that standard expl3 style would be l_bp_mylist_clist or similar.

    – Joseph Wright
    3 hours ago






  • 1





    @bp2017 You want the predicates: clist_if_empty_p:N, and so on

    – Joseph Wright
    3 hours ago
















How can I use AND (&&) during this clist_if_empty check to also perform check on additional list (or on something else) in one directive?

– bp2017
4 hours ago






How can I use AND (&&) during this clist_if_empty check to also perform check on additional list (or on something else) in one directive?

– bp2017
4 hours ago





1




1





See bool_if:nTF or (better) e.g. bool_lazy_or:nnTF, all in interface3.

– Joseph Wright
4 hours ago





See bool_if:nTF or (better) e.g. bool_lazy_or:nnTF, all in interface3.

– Joseph Wright
4 hours ago













@JosephWright, thank you. I've seen those and read a bit about them but I have no idea how to combine them with a conditional statement like clist_if_empty. I'll take a look again and see if I can find this information this time.

– bp2017
4 hours ago





@JosephWright, thank you. I've seen those and read a bit about them but I have no idea how to combine them with a conditional statement like clist_if_empty. I'll take a look again and see if I can find this information this time.

– bp2017
4 hours ago




1




1





@bp2017 You can always use the c-type variants, e..g clist_new:c myList2 . Note though that there is no escaping the catcode and token basis of TeX. Also note that standard expl3 style would be l_bp_mylist_clist or similar.

– Joseph Wright
3 hours ago





@bp2017 You can always use the c-type variants, e..g clist_new:c myList2 . Note though that there is no escaping the catcode and token basis of TeX. Also note that standard expl3 style would be l_bp_mylist_clist or similar.

– Joseph Wright
3 hours ago




1




1





@bp2017 You want the predicates: clist_if_empty_p:N, and so on

– Joseph Wright
3 hours ago





@bp2017 You want the predicates: clist_if_empty_p:N, and so on

– Joseph Wright
3 hours ago











6














The test you want is clist_if_empty:N(TF): each data type has an appropriate test for emptiness or similar. These are defined such that they are 'aware' of the internal nature of data types (for example an empty prop is not entirely empty at the macro level).



Your cs_if_empty:NN(TF) test is wrong as the second argument you have given is no N type (a single token), but is rather n-type (in this case, an empty token list). You could in this case do a low-level test, for example



cs_if_eq:NN(TF) myList c_empty_clist <true> <false> 


or by expanding the list to a 'raw' token list



tl_if_blank:V(TF) c_empty_clist <true> <false> 





share|improve this answer























  • There is a style in tikzset named myStyle, I tried to pass #1 of that style (which contains all the arguments passed to the style, supplied through a node or a path directive which calls that style with or without arguments) inside /utils/exec as clist_set:NnmyList#1. But for some reason when the style is used with no arguments (like path node[myStyle];), the list is NOT empty (it's empty only when path node[myStyle=];). I'm trying to figure out why I get such result (and trying to look what #1 contains in this case, but having difficulties so far).

    – bp2017
    4 hours ago







  • 1





    @bp2017 There is some 'back end' in pgf that may be responsible, but I'd be tempted just to showtokens the input #1.

    – Joseph Wright
    4 hours ago











  • Great! Here is the answer: showtokens pgfkeysnovalue . So I'll be checking against this pgfkeysnovalue in case no arguments were supplied at all.

    – bp2017
    4 hours ago
















6














The test you want is clist_if_empty:N(TF): each data type has an appropriate test for emptiness or similar. These are defined such that they are 'aware' of the internal nature of data types (for example an empty prop is not entirely empty at the macro level).



Your cs_if_empty:NN(TF) test is wrong as the second argument you have given is no N type (a single token), but is rather n-type (in this case, an empty token list). You could in this case do a low-level test, for example



cs_if_eq:NN(TF) myList c_empty_clist <true> <false> 


or by expanding the list to a 'raw' token list



tl_if_blank:V(TF) c_empty_clist <true> <false> 





share|improve this answer























  • There is a style in tikzset named myStyle, I tried to pass #1 of that style (which contains all the arguments passed to the style, supplied through a node or a path directive which calls that style with or without arguments) inside /utils/exec as clist_set:NnmyList#1. But for some reason when the style is used with no arguments (like path node[myStyle];), the list is NOT empty (it's empty only when path node[myStyle=];). I'm trying to figure out why I get such result (and trying to look what #1 contains in this case, but having difficulties so far).

    – bp2017
    4 hours ago







  • 1





    @bp2017 There is some 'back end' in pgf that may be responsible, but I'd be tempted just to showtokens the input #1.

    – Joseph Wright
    4 hours ago











  • Great! Here is the answer: showtokens pgfkeysnovalue . So I'll be checking against this pgfkeysnovalue in case no arguments were supplied at all.

    – bp2017
    4 hours ago














6












6








6







The test you want is clist_if_empty:N(TF): each data type has an appropriate test for emptiness or similar. These are defined such that they are 'aware' of the internal nature of data types (for example an empty prop is not entirely empty at the macro level).



Your cs_if_empty:NN(TF) test is wrong as the second argument you have given is no N type (a single token), but is rather n-type (in this case, an empty token list). You could in this case do a low-level test, for example



cs_if_eq:NN(TF) myList c_empty_clist <true> <false> 


or by expanding the list to a 'raw' token list



tl_if_blank:V(TF) c_empty_clist <true> <false> 





share|improve this answer













The test you want is clist_if_empty:N(TF): each data type has an appropriate test for emptiness or similar. These are defined such that they are 'aware' of the internal nature of data types (for example an empty prop is not entirely empty at the macro level).



Your cs_if_empty:NN(TF) test is wrong as the second argument you have given is no N type (a single token), but is rather n-type (in this case, an empty token list). You could in this case do a low-level test, for example



cs_if_eq:NN(TF) myList c_empty_clist <true> <false> 


or by expanding the list to a 'raw' token list



tl_if_blank:V(TF) c_empty_clist <true> <false> 






share|improve this answer












share|improve this answer



share|improve this answer










answered 4 hours ago









Joseph WrightJoseph Wright

207k23568897




207k23568897












  • There is a style in tikzset named myStyle, I tried to pass #1 of that style (which contains all the arguments passed to the style, supplied through a node or a path directive which calls that style with or without arguments) inside /utils/exec as clist_set:NnmyList#1. But for some reason when the style is used with no arguments (like path node[myStyle];), the list is NOT empty (it's empty only when path node[myStyle=];). I'm trying to figure out why I get such result (and trying to look what #1 contains in this case, but having difficulties so far).

    – bp2017
    4 hours ago







  • 1





    @bp2017 There is some 'back end' in pgf that may be responsible, but I'd be tempted just to showtokens the input #1.

    – Joseph Wright
    4 hours ago











  • Great! Here is the answer: showtokens pgfkeysnovalue . So I'll be checking against this pgfkeysnovalue in case no arguments were supplied at all.

    – bp2017
    4 hours ago


















  • There is a style in tikzset named myStyle, I tried to pass #1 of that style (which contains all the arguments passed to the style, supplied through a node or a path directive which calls that style with or without arguments) inside /utils/exec as clist_set:NnmyList#1. But for some reason when the style is used with no arguments (like path node[myStyle];), the list is NOT empty (it's empty only when path node[myStyle=];). I'm trying to figure out why I get such result (and trying to look what #1 contains in this case, but having difficulties so far).

    – bp2017
    4 hours ago







  • 1





    @bp2017 There is some 'back end' in pgf that may be responsible, but I'd be tempted just to showtokens the input #1.

    – Joseph Wright
    4 hours ago











  • Great! Here is the answer: showtokens pgfkeysnovalue . So I'll be checking against this pgfkeysnovalue in case no arguments were supplied at all.

    – bp2017
    4 hours ago

















There is a style in tikzset named myStyle, I tried to pass #1 of that style (which contains all the arguments passed to the style, supplied through a node or a path directive which calls that style with or without arguments) inside /utils/exec as clist_set:NnmyList#1. But for some reason when the style is used with no arguments (like path node[myStyle];), the list is NOT empty (it's empty only when path node[myStyle=];). I'm trying to figure out why I get such result (and trying to look what #1 contains in this case, but having difficulties so far).

– bp2017
4 hours ago






There is a style in tikzset named myStyle, I tried to pass #1 of that style (which contains all the arguments passed to the style, supplied through a node or a path directive which calls that style with or without arguments) inside /utils/exec as clist_set:NnmyList#1. But for some reason when the style is used with no arguments (like path node[myStyle];), the list is NOT empty (it's empty only when path node[myStyle=];). I'm trying to figure out why I get such result (and trying to look what #1 contains in this case, but having difficulties so far).

– bp2017
4 hours ago





1




1





@bp2017 There is some 'back end' in pgf that may be responsible, but I'd be tempted just to showtokens the input #1.

– Joseph Wright
4 hours ago





@bp2017 There is some 'back end' in pgf that may be responsible, but I'd be tempted just to showtokens the input #1.

– Joseph Wright
4 hours ago













Great! Here is the answer: showtokens pgfkeysnovalue . So I'll be checking against this pgfkeysnovalue in case no arguments were supplied at all.

– bp2017
4 hours ago






Great! Here is the answer: showtokens pgfkeysnovalue . So I'll be checking against this pgfkeysnovalue in case no arguments were supplied at all.

– bp2017
4 hours ago


















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%2f490862%2fhow-to-check-if-comma-list-is-empty%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