Difference between revisions of "Talk:1394: Superm*n"

Explain xkcd: It's 'cause you're dumb.
Jump to: navigation, search
('Superm*n' shouldn't be interpreted as a regular expression)
 
Line 1: Line 1:
Excellent description, but minor niggle: In "Superm*n" , the '*' is a wildcard.  This isn't a regular expression that would match 'Superman' and Supermoon'.  A regexp could be "Superm.*n" - the '.' means 'any character' and the '*' means 'as many times as you like'. (More selective regexps exist)  If you were to interpret 'Superm*n' as a regular expression, it would match 'Supern' , 'Supermn', "Supermmn', Supermmmn' etc.  So you could describe this as a 'wildcard search that would match superman and supermoon'.
+
Excellent description, but minor niggle: In "Superm*n' , the '*' is a wildcard.  This isn't a regular expression that would match 'Superman' and Supermoon'.  A regexp could be "Superm.*n" - the '.' means 'any character' and the '*' means 'as many times as you like'. (More selective regexps exist)  If you were to interpret 'Superm*n' as a regular expression, it would match 'Supern' , 'Supermn', "Supermmn', Supermmmn' etc.  So you could describe 'Superm*n' as a 'wildcard search that would match superman and supermoon'. [[Special:Contributions/141.101.99.184|141.101.99.184]] 05:11, 14 July 2014 (UTC)

Revision as of 05:11, 14 July 2014

Excellent description, but minor niggle: In "Superm*n' , the '*' is a wildcard. This isn't a regular expression that would match 'Superman' and Supermoon'. A regexp could be "Superm.*n" - the '.' means 'any character' and the '*' means 'as many times as you like'. (More selective regexps exist) If you were to interpret 'Superm*n' as a regular expression, it would match 'Supern' , 'Supermn', "Supermmn', Supermmmn' etc. So you could describe 'Superm*n' as a 'wildcard search that would match superman and supermoon'. 141.101.99.184 05:11, 14 July 2014 (UTC)