Pauses for user input of a string, and returns that string
(getstring [cr][msg])
getstring request.
The user cannot enter another AutoLISP expression as the response to aArguments
nil, this argument indicates that users can include blanks in their input string (and must terminate the string by pressing ENTER). Otherwise, the input string is terminated by entering a space or pressing ENTER.
If supplied and notA string to be displayed to prompt the user.
Return Values
nil, if the user pressed ENTER without typing a string.
The string entered by the user; otherwisegetstring returns only the first 132 characters of the string. If the input string contains the backslash character (\), getstring converts it to two backslash characters (\\). This allows you to use returned values containing file name paths in other functions.
If the string is longer than 132 characters,Examples
Command: (setq s (getstring "What's your first name? "))
What's your first name? Gary
"Gary"
Command: (setq s (getstring T "What's your full name? "))
What's your full name? Gary Indiana Jones
"Gary Indiana Jones"
Command: (setq s (getstring T "Enter filename: "))
Enter filename: c:\my documents\vlisp\secrets
"c:\\my documents\\vlisp\\secrets"
initget function. The getxxx Functions in the AutoLISP Developer's Guide.
The