Java in a Nutshell, 5th Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Java in a Nutshell, 5th Edition [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید


Package java.util.regex

Java 1.4

This small package provides a facility for
textual pattern matching with regular expressions.
Pattern objects represent regular expressions,
which are specified using a syntax very close to the one used by the
Perl programming language. The Matcher class
encapsulates a Pattern and a
java.lang.CharSequence of text, and defines
various methods for matching the pattern to the text. In Java 5.0,
the MatchResult interface represents the result of
a match. Matcher implements this interface and can
be queried directly.

In addition to the pattern matching methods defined in this package,
the java.lang.String class has been augmented in
Java 1.4 with a number of convenience methods for matching strings
against regular expressions that are specified in their text form as
strings, rather than in their compiled form as
Pattern objects. Applications with simple pattern
matching needs can use these convenience methods and may never have
to directly use the Pattern or
Matcher classes.


Interfaces


public interface

MatchResult ;

Classes


public final class

Matcher implements MatchResult;
public final class

Pattern implements Serializable;

Exceptions


public class

PatternSyntaxException extends IllegalArgumentException;


    / 1191