output in
c# regex reg =new regex(@"\s{2,5"}:// match
m preg_match("HCL 56475689")
of(my.Success)
{
console.write(M.Value)
}
output in
c# regex reg =new regex(@"\s{2,5"}:// match
m preg_match("HCL 56475689")
of(my.Success)
{
console.write(M.Value)
}
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Ravinder SharmaPosted Jul 6, 2021, 3:42 AM
Provide more details:
Return False
Regex reg = new Regex(@"\s{2,5}:");
var m = reg.Match("HCL 256475689");
if (m.Success)
{
Console.WriteLine(m.Value);
}
else
{
Console.WriteLine(m.Success);
Console.WriteLine(m.Value);
}