Login
|
Signup
langref.org
-
csharp
and
fantom
add..
all
clojure
cpp
erlang
fsharp
go
groovy
haskell
java
ocaml
perl
php
python
ruby
scala
Home
All
Solved
Unsolved
Strings
Numbers
Regex
Lists
Maps
Structure
Files
Dates
OOP
Networking
XML
Algorithms
Misc
Parallel
View Problem
Regex
Searching
Check if a string contains a match to a regular expression
Display
"ok"
if
"abc 123 @#$"
matches
/\d+/
csharp
if(System.Text.RegularExpressions.Regex.IsMatch("abc 123 @#$",@"\d+")){
Console.WriteLine("ok");
}
if(System.Text.RegularExpressions.Regex.IsMatch("abc 123 @#$",@"\d+")){
Console.WriteLine("ok");
}
fantom
m := Regex<|\d+|>.matcher("abc 123 @#\$")
if (m.find)
echo("ok")
class SolutionXX
{
Void main()
{
m := Regex<|\d+|>.matcher("abc 123 @#\$")
if (m.find)
echo("ok")
}
}
Submit a new solution for
csharp
or
fantom
There are 15 other solutions in
additional
languages (
clojure
,
cpp
,
erlang
,
fsharp
...)