• Hubs
  • tagged regular expression

1-10 of 24 hubssort by Hot Best Latest

57

Extra Features in JavaScript String Regular Expressions

IntroductionThis is the eighth and last part of my series, JavaScript String Regular Expressions. We have learned a lot about regular expressions in JavaScript. What we have learned would solve many of our...

0 comments    javascript string more
67

Using JavaScript String Regular Expressions

IntroductionThis is the seventh part of my series, JavaScript String Regular Expressions. We have seen some uses of regex in JavaScript. We know how to verify if a regex is found in a subject string. We know...

0 comments    javascript string use
68

Building JavaScript String Regular Expressions

IntroductionThis is part 6 of my series, JavaScript String Regular Expressions. Many of the examples we have come across are simple examples. In this section we look at two examples that are more demanding....

0 comments    build javascript string
85

Flags in JavaScript String Regular Expressions

IntroductionThis is part 5 of my series JavaScript String Regular Expressions. Matching is case sensitive. You may not know if what you are looking for is in lower case or upper case or has mixed cases. It is...

0 comments    flag javascript string
55

Grouping in JavaScript String Regular Expressions

IntroductionThis is the fourth part of my series JavaScript String Regular Expressions. You can actually group bits of a regular expression and do something with it. That is what this part of the series is...

0 comments    group javascript string
63

More JavaScript String Regular Expression Patterns

IntroductionThis is the third part of my series JavaScript String Regular Expressions. In this part of the series, we continue to analyze patterns in JavaScript Regular Expressions using the string...

0 comments    pattern javascript string
76

JavaScript String Regular Expression Patterns

IntroductionThis is the second part of my series, JavaScript String Regular Expressions. In this part of the series, we start analyzing patterns in JavaScript Regular Expressions.Character ClassesThe Square...

0 comments    pattern javascript string
66

Introduction to JavaScript String Regular Expressions

IntroductionThis is part 1 of my series, JavaScript String Regular Expressions. Consider the string,                            “This is a man”.Assume that you do not know the...

1 comment    javascript introduction string
61

Extra Features in PHP Regular Expressions

IntroductionWe have learned a lot about regular expressions in PHP. What we have learned would solve many of our problems. However, there will come a time when you would want to do more in regex. So this last...

0 comments    php more regular expression
61

Using Regular Expressions in PHP

IntroductionWe have seen some uses of regex in PHP. We know how to verify if a regex is found in a subject string. We know how to find the position of matched regex in the subject string. Note that the...

0 comments    php use regular expressions
working