StringForm::sfr
Details
-
- This message is generated when StringForm is used with an insufficient number of arguments to fill the positions specified in the control string.
- Since StringForm is used for generating messages, this error can occur when there is a corresponding error in the text of a message.
- Off[message] switches off the message; On[message] switches it on. For example: Off[StringForm::sfr].
Examples
Basic Examples (1)
An error occurs because the control string specifies three positions to be filled and only two expressions are given:
StringForm["x1 = `1`; x2 = `2`; x3 = `3`", 5, 7]This shows valid arguments in StringForm:
StringForm["x1 = `1`; x2 = `2`; x3 = `3`", 5, 7, 9]