public class Regex extends NetObject implements ISerializable
.NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Text.RegularExpressions.Regex
Powered by JCOBridge: more info at https://www.jcobridge.com
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
assemblyFullName
Fully assembly qualified name: System.Text.RegularExpressions, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
|
static java.lang.String |
assemblyShortName
Assembly name: System.Text.RegularExpressions
|
static java.lang.String |
className
Qualified class name: System.Text.RegularExpressions.Regex
|
static JCType |
classType
The type managed from JCOBridge.
|
| Constructor and Description |
|---|
Regex() |
Regex(java.lang.Object instance)
Internal constructor.
|
Regex(java.lang.String pattern) |
Regex(java.lang.String pattern,
RegexOptions options) |
Regex(java.lang.String pattern,
RegexOptions options,
TimeSpan matchTimeout) |
| Modifier and Type | Method and Description |
|---|---|
static Regex |
cast(IJCOBridgeReflected from)
Try to cast the
IJCOBridgeReflected instance into Regex, a cast assert is made to check if types are compatible. |
static void |
CompileToAssembly(RegexCompilationInfo[] regexinfos,
AssemblyName assemblyname) |
static void |
CompileToAssembly(RegexCompilationInfo[] regexinfos,
AssemblyName assemblyname,
CustomAttributeBuilder[] attributes) |
static void |
CompileToAssembly(RegexCompilationInfo[] regexinfos,
AssemblyName assemblyname,
CustomAttributeBuilder[] attributes,
java.lang.String resourceFile) |
int |
Count(java.lang.String input) |
static int |
Count(java.lang.String input,
java.lang.String pattern) |
static int |
Count(java.lang.String input,
java.lang.String pattern,
RegexOptions options) |
static int |
Count(java.lang.String input,
java.lang.String pattern,
RegexOptions options,
TimeSpan matchTimeout) |
static java.lang.String |
Escape(java.lang.String str) |
static int |
getCacheSize() |
java.lang.String[] |
GetGroupNames() |
int[] |
GetGroupNumbers() |
java.lang.String |
getJCOAssemblyName()
Returns the reflected Assembly name
|
java.lang.String |
getJCOClassName()
Returns the reflected Class name
|
java.lang.Object |
getJCOInstance()
Returns the instantiated class
|
java.lang.String |
getJCOObjectName()
Returns the reflected Class name used to build the object
|
JCType |
getJCOType()
Returns the instantiated class Type
|
TimeSpan |
getMatchTimeout() |
RegexOptions |
getOptions() |
boolean |
getRightToLeft() |
java.lang.String |
GroupNameFromNumber(int i) |
int |
GroupNumberFromName(java.lang.String name) |
boolean |
IsMatch(java.lang.String input) |
boolean |
IsMatch(java.lang.String input,
int startat) |
static boolean |
IsMatch(java.lang.String input,
java.lang.String pattern) |
static boolean |
IsMatch(java.lang.String input,
java.lang.String pattern,
RegexOptions options) |
static boolean |
IsMatch(java.lang.String input,
java.lang.String pattern,
RegexOptions options,
TimeSpan matchTimeout) |
Match |
Match(java.lang.String input) |
Match |
Match(java.lang.String input,
int startat) |
Match |
Match(java.lang.String input,
int beginning,
int length) |
static Match |
Match(java.lang.String input,
java.lang.String pattern) |
static Match |
Match(java.lang.String input,
java.lang.String pattern,
RegexOptions options) |
static Match |
Match(java.lang.String input,
java.lang.String pattern,
RegexOptions options,
TimeSpan matchTimeout) |
MatchCollection |
Matches(java.lang.String input) |
MatchCollection |
Matches(java.lang.String input,
int startat) |
static MatchCollection |
Matches(java.lang.String input,
java.lang.String pattern) |
static MatchCollection |
Matches(java.lang.String input,
java.lang.String pattern,
RegexOptions options) |
static MatchCollection |
Matches(java.lang.String input,
java.lang.String pattern,
RegexOptions options,
TimeSpan matchTimeout) |
java.lang.String |
Replace(java.lang.String input,
MatchEvaluator evaluator) |
java.lang.String |
Replace(java.lang.String input,
MatchEvaluator evaluator,
int count) |
java.lang.String |
Replace(java.lang.String input,
MatchEvaluator evaluator,
int count,
int startat) |
java.lang.String |
Replace(java.lang.String input,
java.lang.String replacement) |
java.lang.String |
Replace(java.lang.String input,
java.lang.String replacement,
int count) |
java.lang.String |
Replace(java.lang.String input,
java.lang.String replacement,
int count,
int startat) |
static java.lang.String |
Replace(java.lang.String input,
java.lang.String pattern,
MatchEvaluator evaluator) |
static java.lang.String |
Replace(java.lang.String input,
java.lang.String pattern,
MatchEvaluator evaluator,
RegexOptions options) |
static java.lang.String |
Replace(java.lang.String input,
java.lang.String pattern,
MatchEvaluator evaluator,
RegexOptions options,
TimeSpan matchTimeout) |
static java.lang.String |
Replace(java.lang.String input,
java.lang.String pattern,
java.lang.String replacement) |
static java.lang.String |
Replace(java.lang.String input,
java.lang.String pattern,
java.lang.String replacement,
RegexOptions options) |
static java.lang.String |
Replace(java.lang.String input,
java.lang.String pattern,
java.lang.String replacement,
RegexOptions options,
TimeSpan matchTimeout) |
static void |
setCacheSize(int CacheSize) |
void |
setJCOInstance(JCObject instance) |
java.lang.String[] |
Split(java.lang.String input) |
java.lang.String[] |
Split(java.lang.String input,
int count) |
java.lang.String[] |
Split(java.lang.String input,
int count,
int startat) |
static java.lang.String[] |
Split(java.lang.String input,
java.lang.String pattern) |
static java.lang.String[] |
Split(java.lang.String input,
java.lang.String pattern,
RegexOptions options) |
static java.lang.String[] |
Split(java.lang.String input,
java.lang.String pattern,
RegexOptions options,
TimeSpan matchTimeout) |
static java.lang.String |
Unescape(java.lang.String str) |
Equals, Equals, GetHashCode, GetType, hashCode, toString, ToStringGetObjectData, ToISerializablepublic static final java.lang.String assemblyFullName
public static final java.lang.String assemblyShortName
public static final java.lang.String className
public Regex()
throws java.lang.Throwable
java.lang.Throwablepublic Regex(java.lang.Object instance)
throws java.lang.Throwable
java.lang.Throwablepublic Regex(java.lang.String pattern)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
CultureNotFoundException,
PlatformNotSupportedException,
NullReferenceException,
IndexOutOfRangeException,
RegexParseException,
KeyNotFoundException,
OutOfMemoryException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOutOfMemoryExceptionpublic Regex(java.lang.String pattern,
RegexOptions options)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
CultureNotFoundException,
PlatformNotSupportedException,
NullReferenceException,
IndexOutOfRangeException,
RegexParseException,
KeyNotFoundException,
OutOfMemoryException,
TaskSchedulerException,
OverflowException,
FormatException,
UnreachableException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOutOfMemoryExceptionTaskSchedulerExceptionOverflowExceptionFormatExceptionUnreachableExceptionpublic Regex(java.lang.String pattern,
RegexOptions options,
TimeSpan matchTimeout)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
CultureNotFoundException,
PlatformNotSupportedException,
NullReferenceException,
IndexOutOfRangeException,
RegexParseException,
KeyNotFoundException,
OutOfMemoryException,
TaskSchedulerException,
OverflowException,
FormatException,
UnreachableException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOutOfMemoryExceptionTaskSchedulerExceptionOverflowExceptionFormatExceptionUnreachableExceptionpublic static Regex cast(IJCOBridgeReflected from) throws java.lang.Throwable
IJCOBridgeReflected instance into Regex, a cast assert is made to check if types are compatible.from - IJCOBridgeReflected instance to be castedRegex instancejava.lang.Throwable - in case of error during cast operationpublic static void CompileToAssembly(RegexCompilationInfo[] regexinfos, AssemblyName assemblyname) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, ObjectDisposedException
public static void CompileToAssembly(RegexCompilationInfo[] regexinfos, AssemblyName assemblyname, CustomAttributeBuilder[] attributes) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, ObjectDisposedException
public static void CompileToAssembly(RegexCompilationInfo[] regexinfos, AssemblyName assemblyname, CustomAttributeBuilder[] attributes, java.lang.String resourceFile) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException
public int Count(java.lang.String input)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
NullReferenceException,
NotImplementedException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionNullReferenceExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic static int Count(java.lang.String input,
java.lang.String pattern)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
CultureNotFoundException,
PlatformNotSupportedException,
NullReferenceException,
IndexOutOfRangeException,
RegexParseException,
KeyNotFoundException,
NotImplementedException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic static int Count(java.lang.String input,
java.lang.String pattern,
RegexOptions options)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
CultureNotFoundException,
PlatformNotSupportedException,
NullReferenceException,
IndexOutOfRangeException,
RegexParseException,
KeyNotFoundException,
OverflowException,
FormatException,
ArrayTypeMismatchException,
UnreachableException,
NotImplementedException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOverflowExceptionFormatExceptionArrayTypeMismatchExceptionUnreachableExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic static int Count(java.lang.String input,
java.lang.String pattern,
RegexOptions options,
TimeSpan matchTimeout)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
CultureNotFoundException,
PlatformNotSupportedException,
NullReferenceException,
IndexOutOfRangeException,
RegexParseException,
KeyNotFoundException,
OverflowException,
FormatException,
ArrayTypeMismatchException,
UnreachableException,
NotImplementedException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOverflowExceptionFormatExceptionArrayTypeMismatchExceptionUnreachableExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic static java.lang.String Escape(java.lang.String str)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
UnreachableException
public static int getCacheSize()
throws java.lang.Throwable,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ArgumentException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException
public java.lang.String[] GetGroupNames()
throws java.lang.Throwable,
NotSupportedException,
ArgumentException,
PlatformNotSupportedException,
IndexOutOfRangeException,
ArrayTypeMismatchException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionArrayTypeMismatchExceptionpublic int[] GetGroupNumbers()
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException
public java.lang.String getJCOAssemblyName()
IJCOBridgeReflectedgetJCOAssemblyName in interface IJCOBridgeReflectedgetJCOAssemblyName in interface ISerializablegetJCOAssemblyName in class NetObjectString representing the Fullname of reflected Assemblypublic java.lang.String getJCOClassName()
IJCOBridgeReflectedgetJCOClassName in interface IJCOBridgeReflectedgetJCOClassName in interface ISerializablegetJCOClassName in class NetObjectString representing the Fullname of reflected Classpublic java.lang.Object getJCOInstance()
IJCOBridgeReflectedgetJCOInstance in interface IJCOBridgeReflectedgetJCOInstance in interface ISerializablegetJCOInstance in class NetObjectObject representing the CLR instance of the instantiated Classpublic java.lang.String getJCOObjectName()
IJCOBridgeReflectedgetJCOObjectName in interface IJCOBridgeReflectedgetJCOObjectName in interface ISerializablegetJCOObjectName in class NetObjectString representing the name used to allocated the object
in CLR contextpublic JCType getJCOType()
IJCOBridgeReflectedgetJCOType in interface IJCOBridgeReflectedgetJCOType in interface ISerializablegetJCOType in class NetObjectJCType representing the CLR Type of the instantiated Classpublic TimeSpan getMatchTimeout() throws java.lang.Throwable
java.lang.Throwablepublic RegexOptions getOptions() throws java.lang.Throwable
java.lang.Throwablepublic boolean getRightToLeft()
throws java.lang.Throwable
java.lang.Throwablepublic java.lang.String GroupNameFromNumber(int i)
throws java.lang.Throwable,
NotSupportedException,
ArgumentException,
PlatformNotSupportedException,
IndexOutOfRangeException,
ArgumentNullException,
ArgumentOutOfRangeException
public int GroupNumberFromName(java.lang.String name)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
NullReferenceException
public boolean IsMatch(java.lang.String input)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
NullReferenceException,
NotImplementedException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionNullReferenceExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic boolean IsMatch(java.lang.String input,
int startat)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
NullReferenceException,
NotImplementedException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionNullReferenceExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic static boolean IsMatch(java.lang.String input,
java.lang.String pattern)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
CultureNotFoundException,
PlatformNotSupportedException,
NullReferenceException,
IndexOutOfRangeException,
RegexParseException,
KeyNotFoundException,
NotImplementedException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic static boolean IsMatch(java.lang.String input,
java.lang.String pattern,
RegexOptions options)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
CultureNotFoundException,
PlatformNotSupportedException,
NullReferenceException,
IndexOutOfRangeException,
RegexParseException,
KeyNotFoundException,
OverflowException,
FormatException,
ArrayTypeMismatchException,
UnreachableException,
NotImplementedException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOverflowExceptionFormatExceptionArrayTypeMismatchExceptionUnreachableExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic static boolean IsMatch(java.lang.String input,
java.lang.String pattern,
RegexOptions options,
TimeSpan matchTimeout)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
CultureNotFoundException,
PlatformNotSupportedException,
NullReferenceException,
IndexOutOfRangeException,
RegexParseException,
KeyNotFoundException,
OverflowException,
FormatException,
ArrayTypeMismatchException,
UnreachableException,
NotImplementedException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOverflowExceptionFormatExceptionArrayTypeMismatchExceptionUnreachableExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic Match Match(java.lang.String input) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, NullReferenceException, NotImplementedException, RegexMatchTimeoutException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionNullReferenceExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic Match Match(java.lang.String input, int startat) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, NullReferenceException, NotImplementedException, RegexMatchTimeoutException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionNullReferenceExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic Match Match(java.lang.String input, int beginning, int length) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, NullReferenceException, NotImplementedException, RegexMatchTimeoutException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionNullReferenceExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic static Match Match(java.lang.String input, java.lang.String pattern) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, NullReferenceException, IndexOutOfRangeException, RegexParseException, KeyNotFoundException, NotImplementedException, RegexMatchTimeoutException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic static Match Match(java.lang.String input, java.lang.String pattern, RegexOptions options) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, NullReferenceException, IndexOutOfRangeException, RegexParseException, KeyNotFoundException, OverflowException, FormatException, ArrayTypeMismatchException, UnreachableException, NotImplementedException, RegexMatchTimeoutException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOverflowExceptionFormatExceptionArrayTypeMismatchExceptionUnreachableExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic static Match Match(java.lang.String input, java.lang.String pattern, RegexOptions options, TimeSpan matchTimeout) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, NullReferenceException, IndexOutOfRangeException, RegexParseException, KeyNotFoundException, OverflowException, FormatException, ArrayTypeMismatchException, UnreachableException, NotImplementedException, RegexMatchTimeoutException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOverflowExceptionFormatExceptionArrayTypeMismatchExceptionUnreachableExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic MatchCollection Matches(java.lang.String input) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public MatchCollection Matches(java.lang.String input, int startat) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
public static MatchCollection Matches(java.lang.String input, java.lang.String pattern) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, NullReferenceException, IndexOutOfRangeException, RegexParseException, KeyNotFoundException
public static MatchCollection Matches(java.lang.String input, java.lang.String pattern, RegexOptions options) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, NullReferenceException, IndexOutOfRangeException, RegexParseException, KeyNotFoundException, OverflowException, FormatException, ArrayTypeMismatchException, UnreachableException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOverflowExceptionFormatExceptionArrayTypeMismatchExceptionUnreachableExceptionpublic static MatchCollection Matches(java.lang.String input, java.lang.String pattern, RegexOptions options, TimeSpan matchTimeout) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, NullReferenceException, IndexOutOfRangeException, RegexParseException, KeyNotFoundException, OverflowException, FormatException, ArrayTypeMismatchException, UnreachableException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOverflowExceptionFormatExceptionArrayTypeMismatchExceptionUnreachableExceptionpublic java.lang.String Replace(java.lang.String input,
MatchEvaluator evaluator)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
NullReferenceException,
NotImplementedException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionNullReferenceExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic java.lang.String Replace(java.lang.String input,
MatchEvaluator evaluator,
int count)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
NullReferenceException,
NotImplementedException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionNullReferenceExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic java.lang.String Replace(java.lang.String input,
MatchEvaluator evaluator,
int count,
int startat)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
NullReferenceException,
NotImplementedException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionNullReferenceExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic java.lang.String Replace(java.lang.String input,
java.lang.String replacement)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
NullReferenceException,
CultureNotFoundException,
RegexParseException,
NotImplementedException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionNullReferenceExceptionCultureNotFoundExceptionRegexParseExceptionNotImplementedExceptionpublic java.lang.String Replace(java.lang.String input,
java.lang.String replacement,
int count)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
NullReferenceException,
CultureNotFoundException,
RegexParseException,
NotImplementedException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionNullReferenceExceptionCultureNotFoundExceptionRegexParseExceptionNotImplementedExceptionpublic java.lang.String Replace(java.lang.String input,
java.lang.String replacement,
int count,
int startat)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
NullReferenceException,
CultureNotFoundException,
FormatException,
RegexParseException,
NotImplementedException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionNullReferenceExceptionCultureNotFoundExceptionFormatExceptionRegexParseExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic static java.lang.String Replace(java.lang.String input,
java.lang.String pattern,
MatchEvaluator evaluator)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
CultureNotFoundException,
PlatformNotSupportedException,
NullReferenceException,
IndexOutOfRangeException,
RegexParseException,
KeyNotFoundException,
NotImplementedException,
RegexMatchTimeoutException,
ArrayTypeMismatchException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionNotImplementedExceptionRegexMatchTimeoutExceptionArrayTypeMismatchExceptionpublic static java.lang.String Replace(java.lang.String input,
java.lang.String pattern,
MatchEvaluator evaluator,
RegexOptions options)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
CultureNotFoundException,
PlatformNotSupportedException,
NullReferenceException,
IndexOutOfRangeException,
RegexParseException,
KeyNotFoundException,
OverflowException,
FormatException,
ArrayTypeMismatchException,
UnreachableException,
NotImplementedException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOverflowExceptionFormatExceptionArrayTypeMismatchExceptionUnreachableExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic static java.lang.String Replace(java.lang.String input,
java.lang.String pattern,
MatchEvaluator evaluator,
RegexOptions options,
TimeSpan matchTimeout)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
CultureNotFoundException,
PlatformNotSupportedException,
NullReferenceException,
IndexOutOfRangeException,
RegexParseException,
KeyNotFoundException,
OverflowException,
FormatException,
ArrayTypeMismatchException,
UnreachableException,
NotImplementedException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOverflowExceptionFormatExceptionArrayTypeMismatchExceptionUnreachableExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic static java.lang.String Replace(java.lang.String input,
java.lang.String pattern,
java.lang.String replacement)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
CultureNotFoundException,
PlatformNotSupportedException,
NullReferenceException,
IndexOutOfRangeException,
RegexParseException,
KeyNotFoundException,
ArrayTypeMismatchException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionArrayTypeMismatchExceptionpublic static java.lang.String Replace(java.lang.String input,
java.lang.String pattern,
java.lang.String replacement,
RegexOptions options)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
CultureNotFoundException,
PlatformNotSupportedException,
NullReferenceException,
IndexOutOfRangeException,
RegexParseException,
KeyNotFoundException,
OverflowException,
FormatException,
ArrayTypeMismatchException,
UnreachableException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOverflowExceptionFormatExceptionArrayTypeMismatchExceptionUnreachableExceptionpublic static java.lang.String Replace(java.lang.String input,
java.lang.String pattern,
java.lang.String replacement,
RegexOptions options,
TimeSpan matchTimeout)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
CultureNotFoundException,
PlatformNotSupportedException,
NullReferenceException,
IndexOutOfRangeException,
RegexParseException,
KeyNotFoundException,
OverflowException,
FormatException,
ArrayTypeMismatchException,
UnreachableException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOverflowExceptionFormatExceptionArrayTypeMismatchExceptionUnreachableExceptionpublic static void setCacheSize(int CacheSize)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
EventSourceException
public void setJCOInstance(JCObject instance)
setJCOInstance in class NetObjectpublic java.lang.String[] Split(java.lang.String input)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
NullReferenceException,
NotImplementedException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionNullReferenceExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic java.lang.String[] Split(java.lang.String input,
int count)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
NullReferenceException,
NotImplementedException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionNullReferenceExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic java.lang.String[] Split(java.lang.String input,
int count,
int startat)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
NullReferenceException,
NotImplementedException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionNullReferenceExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic static java.lang.String[] Split(java.lang.String input,
java.lang.String pattern)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
CultureNotFoundException,
PlatformNotSupportedException,
NullReferenceException,
IndexOutOfRangeException,
RegexParseException,
KeyNotFoundException,
NotImplementedException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic static java.lang.String[] Split(java.lang.String input,
java.lang.String pattern,
RegexOptions options)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
CultureNotFoundException,
PlatformNotSupportedException,
NullReferenceException,
IndexOutOfRangeException,
RegexParseException,
KeyNotFoundException,
OverflowException,
FormatException,
ArrayTypeMismatchException,
UnreachableException,
NotImplementedException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOverflowExceptionFormatExceptionArrayTypeMismatchExceptionUnreachableExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic static java.lang.String[] Split(java.lang.String input,
java.lang.String pattern,
RegexOptions options,
TimeSpan matchTimeout)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException,
CultureNotFoundException,
PlatformNotSupportedException,
NullReferenceException,
IndexOutOfRangeException,
RegexParseException,
KeyNotFoundException,
OverflowException,
FormatException,
ArrayTypeMismatchException,
UnreachableException,
NotImplementedException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOverflowExceptionFormatExceptionArrayTypeMismatchExceptionUnreachableExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic static java.lang.String Unescape(java.lang.String str)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException,
RegexParseException