• Hubs
  • tagged regular expression

1-10 of 24 hubssort by Hot Best Latest

58

Building a Regular Expression in Perl

IntroductionThis is the sixth part of my series, Regular Expressions in Perl for the Novice. Many of the examples we have come across are simple examples. In this section we look at two examples that are more...

0 comments    build perl regular expression
56

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
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
75

Using Regular Expressions in Perl

IntroductionThis is the seventh part of my series, Regular Expressions in Perl for the Novice. We have seen some uses or regex in Perl. We know how to verify if a regex is found in an available string. We...

0 comments    use perl regular expression
57

Regular Expressions in Perl for the Novice

IntroductionThis is the first part of my series, Regular Expressions in Perl for the Novice. Consider the string,                            “This is a man”.Assume that you do not...

0 comments    introduction perl
70

More Regular Expressions in Perl

IntroductionThis is the eighth part of my series, Regular Expressions in Perl for the Novice. We have learned a lot about regular expressions in Perl. What we have learned would solve many of our problems....

0 comments    more perl regular expression
69

More Regular Expression Patterns in Perl

IntroductionThis is the third part of my series, Regular Expressions in Perl for the Novice. In this part of the series, we continue to analyze patterns in Perl Regular Expressions.Matching RepetitionsIn the...

0 comments    pattern more regular expression
64

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
74

Regex Groupings in Perl

IntroductionThis is the fourth part of my series, Regular Expressions in Perl for the Novice. In this part of the series, I explain regex Grouping and Capturing in Perl.GroupingsWe can use parenthesis to...

0 comments    group perl regular expression
64

More Regular Expression Patterns in PHP

IntroductionIn this part of the series, we continue to analyze patterns in PHP Regular Expressions.Matching RepetitionsIn the subject string, characters or groups of characters may repeat themselves. We shall...

0 comments    php more pattern
working