Twise Random

A site about computer science .
Skip to content
  • apple
  • android
  • c
  • cpp
  • data structure and algorithms
  • macos
  • python
  • tutorials

Category: regex

Regex in java , part two , The Matcher class

Posted on September 25, 2019October 29, 2020 by mohamad wael

The Pattern has some static methods such as matcher which allow us to match a regex against a string from its start till its end , and quote which allow us to quote or escape a regex String . This … Read More

regex

Regex in java , part one , The Pattern class

Posted on September 23, 2019October 29, 2020 by mohamad wael

What is a regex ?

Regex stands for regular expression . it is a string which is formed of characters used to perform :

  • searching
  • replacing
  • validation

in other string. In addition to the regular characters that a regex can … Read More

regex