string delimiter = "id=ContentPlaceHolder1_txtDirecciones style="HEIGHT: 19px; WIDTH: 190px" type=text readOnly value=" ;
我无法使用此分隔符,因为在样式和类型之间我有分号,但我需要将其用作分隔符
我需要分号,因为程序在此分隔符后面搜索一个单词
答案 0 :(得分:3)
逃避双引号,因为这是切割字符串的问题
string delimiter = "id=ContentPlaceHolder1_txtDirecciones style=\"HEIGHT: 19px; WIDTH: 190px\" type=text readOnly value=" ;
答案 1 :(得分:1)
在双引号内使用单引号
string delimiter = "id=ContentPlaceHolder1_txtDirecciones style='HEIGHT: 19px; WIDTH: 190px' type='text' readOnly value=''" ;
答案 2 :(得分:0)
正确引用引号。您可以使用以下字符串文字轻松完成此操作:
string delimiter = @"id=ContentPlaceHolder1_txtDirecciones style=""HEIGHT: 19px; WIDTH: 190px"" type=text readOnly value=" ;