本文介绍了如何在regx.ismatch中处理空值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何处理regx.ismatch中的空值



how to handle null values in regx.ismatch

System.Text.RegularExpressions.Regex.IsMatch(business.Cuisine,"chicken", System.Text.RegularExpressions.RegexOptions.IgnoreCase)





如果输入null如何处理这个regx.ismatch



请帮帮我。

谢谢你。



我尝试过:





if the input null how to handle this regx.ismatch

please help me.
Thank u.

What I have tried:

System.Text.RegularExpressions.Regex.IsMatch(business.Cuisine,"chicken", System.Text.RegularExpressions.RegexOptions.IgnoreCase)





如果输入null如何处理这个regx.ismatch



if the input null how to handle this regx.ismatch

推荐答案

Regex.IsMatch(business.Cuisine ?? "","chicken", RegexOptions.IgnoreCase)

甚至:

Or even:

Regex.IsMatch(business?.Cuisine ?? "","chicken", RegexOptions.IgnoreCase)


这篇关于如何在regx.ismatch中处理空值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-26 21:11