Horje
if string contains number c# Code Example
if string contains number c#
"abc3def".Any(c => char.IsDigit(c));

// Or to make it shorter:
"abc3def".Any(char.IsDigit);
if string contains number c#
accept a string and display if it contains number




Csharp

Related
set decimal point c# Code Example set decimal point c# Code Example
c# put string to clipboard Code Example c# put string to clipboard Code Example
unity rotate vector around point Code Example unity rotate vector around point Code Example
unique id c# Code Example unique id c# Code Example
c# unity follow object Code Example c# unity follow object Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8