Skip to content

00-59/regex-guide-14-00-59

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

regex-guide-14-00-59

Guide for https://14.00-59.com/en/regex-guide

How to use regex?

Inside C

Inside C#

Inside C++

Inside GO

Inside JAVA

Inside JAVASCRIPT

Inside Julia

julia> numbers=r"\d+"
r"\d+"

julia> a_match = match(numbers, "Find all 00-59 numbers. Next are 12 34.")
RegexMatch("00")

julia> a_match = match(numbers, "Find all 00-59 numbers. Next are 12 34.", a_match.offset +length(a_match.match))
RegexMatch("59")

julia> a_match = match(numbers, "Find all 00-59 numbers. Next are 12 34.", a_match.offset +length(a_match.match))
RegexMatch("12")

julia> a_match = match(numbers, "Find all 00-59 numbers. Next are 12 34.", a_match.offset +length(a_match.match))
RegexMatch("34")

julia> a_match = match(numbers, "Find all 00-59 numbers. Next are 12 34.", a_match.offset +length(a_match.match))

julia> a_match === nothing
true

Inside OBJECTIVE-C

Inside PERL

Inside PHP

Inside PYTHON

Inside R

Inside RUBY

Inside SQL

Inside SWIFT

Inside VISUAL BASIC