Provided by module: Tags: Additional RXML tags
Extract parts of a string and put them in other variables. Refer to the sscanf function in the Pike reference manual for a complete description.
A comma separated list with the name of the variables that should be set.
<sscanf variables='form.year,var.month,var.day' format='%4d%2d%2d'>19771003</sscanf> &form.year;-&var.month;-&var.day;
The name of the fallback scope to be used when no scope is given.
<sscanf variables='year,month,day' scope='var' format='%4d%2d%2d'>19801228</sscanf> &var.year;-&var.month;-&var.day;<br /> <sscanf variables='form.year,var.month,var.day' format='%4d%2d%2d'>19801228</sscanf> &form.year;-&var.month;-&var.day;
If used, the number of successfull variable 'extractions' will be available in the given variable.