Java Regular Expressions: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 9: Line 9:


=Overview=
=Overview=
=API=
The general pattern for using regular expressions is the following:
<syntaxhighlight lang='java'>
</syntaxhighlight>
Working code is available here:


=Concurrent Usage Considerations=
=Concurrent Usage Considerations=


{{Warn|Matcher instances are NOT thread safe, create a matcher per thread}}
{{Warn|Matcher instances are NOT thread safe, create a matcher per thread}}

Revision as of 21:04, 29 July 2017

External

Internal

Overview

API

The general pattern for using regular expressions is the following:

Working code is available here:

Concurrent Usage Considerations


Matcher instances are NOT thread safe, create a matcher per thread