using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
namespace Testing
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(PatternFound("1 1 a"));
Console.WriteLine(PatternFound("1 1 a"));
Console.WriteLine(PatternFound(" 1 1 a"));
}
static bool PatternFound(string str)
{
Regex regEx = new Regex("\\s");
Match match = regEx.Match(str);
return match.Success;
}
}
}
5条答案
按热度按时间x3naxklr1#
使用索引
字符串
rmbxnbpk2#
这个函数应该为你做的把戏。
字符串
mwg9r5ms3#
字符串
cqoc49vn4#
不太清楚问题是什么,但如果你只是想知道在给定的字符串中是否有白色空格,那么其他堆栈用户提出的解决方案(也有效)是:
字符串
如果你想确定是否出现一个给定的连续白色空格,那么你需要在正则表达式模式字符串中添加更多的空格。参考http://msdn.microsoft.com/en-us/library/az24scfc(v=vs.110).aspx的选项。
uurv41yg5#
我为字符串创建了一个扩展来检查字母或数字。
字符串
使用扩展名:
型