我有以下表达式:[^(\r\n)]*来识别任何不包含\r\n的文本。但是,当文本包含(或)时,则无法识别。
示例:
"I have following expression to recognize any text."将被确认为OK。
"I have following expression (A) to recognize any text."将不被识别。
因此,我想要全文:"I have following expression (A) to recognize any text."
对于如何在EditForm的Model属性中引用对象,我有点困惑。我见过“人”和“简单的人”。我不知道什么是对的,或者我只是误解了我看到的代码示例。下面是我所说的代码示例。如果有人能详细说明一下,我会很感激的。
谢谢!
<EditForm Model="@person> <= or sometimes shown as just "<EditForm Model="person">"
</EditForm>
@code {
Person person = new Person();
}
public class Fruit
{
// choose one
public int Id { get; set; }
public int FruitId get; set; } // redundant or usefully more descriptive?
// choose one
public string Name { get; set; }
public string FruitName { get; set;} // redundant or usefully more descriptive?
public
我只是做了一些工作,并对结果感到惊讶。让我解释一下。
String str = "aaa.jpg";
String[] str1 = str.split("."); //output of this is empty array with size 0
str.contains("."); //output of this is true.
谁能解释一下,为什么split()方法不能识别".",其中contains()可以识别"."。