How to provide custom string placeholder for string format

后端 未结 8 2126
借酒劲吻你
借酒劲吻你 2020-12-24 07:15

I have a string

string str =\"Enter {0} patient name\";

I am using string.format to format it.

String.Format(str, \"Hello\         


        
8条回答
  •  無奈伤痛
    2020-12-24 07:48

    I saw all the answers above, yet, couldn't get the question right :)

    Is there any particular reason why the following code does not meet your requirement?

    string myFirstStr = GetMyFirstStrFromSomewhere();
    string mySecondStr = GetMySecondStrFromSomewhere();
    
    string result = "Enter " + myFirstStr + " " + mySecondStr + " name";
    

提交回复
热议问题