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, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
|
static java.lang.String |
assemblyShortName
Assembly name: System
|
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) |
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,
ArgumentNullException,
ArgumentOutOfRangeException,
TypeLoadException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotSupportedException,
CultureNotFoundException,
OutOfMemoryException,
IndexOutOfRangeException,
MissingManifestResourceException,
NotImplementedException,
ObjectDisposedException,
FormatException,
NullReferenceException,
KeyNotFoundException,
RankException,
SecurityException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionTypeLoadExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotSupportedExceptionCultureNotFoundExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionFormatExceptionNullReferenceExceptionKeyNotFoundExceptionRankExceptionSecurityExceptionpublic Regex(java.lang.String pattern,
RegexOptions options)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentOutOfRangeException,
TypeLoadException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotSupportedException,
CultureNotFoundException,
OutOfMemoryException,
IndexOutOfRangeException,
MissingManifestResourceException,
NotImplementedException,
ObjectDisposedException,
FormatException,
NullReferenceException,
KeyNotFoundException,
RankException,
SecurityException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionTypeLoadExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotSupportedExceptionCultureNotFoundExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionFormatExceptionNullReferenceExceptionKeyNotFoundExceptionRankExceptionSecurityExceptionpublic Regex(java.lang.String pattern,
RegexOptions options,
TimeSpan matchTimeout)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentOutOfRangeException,
TypeLoadException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotSupportedException,
CultureNotFoundException,
OutOfMemoryException,
IndexOutOfRangeException,
MissingManifestResourceException,
NotImplementedException,
ObjectDisposedException,
FormatException,
NullReferenceException,
KeyNotFoundException,
RankException,
SecurityException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionTypeLoadExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotSupportedExceptionCultureNotFoundExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionFormatExceptionNullReferenceExceptionKeyNotFoundExceptionRankExceptionSecurityExceptionpublic 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, SecurityException, NotSupportedException, FormatException, ArgumentOutOfRangeException, NotImplementedException, InvalidOperationException, NullReferenceException, TypeLoadException, MissingMethodException, TargetInvocationException, FileNotFoundException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, KeyNotFoundException, RankException, UnauthorizedAccessException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionSecurityExceptionNotSupportedExceptionFormatExceptionArgumentOutOfRangeExceptionNotImplementedExceptionInvalidOperationExceptionNullReferenceExceptionTypeLoadExceptionMissingMethodExceptionTargetInvocationExceptionFileNotFoundExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionKeyNotFoundExceptionRankExceptionUnauthorizedAccessExceptionpublic static void CompileToAssembly(RegexCompilationInfo[] regexinfos, AssemblyName assemblyname, CustomAttributeBuilder[] attributes) throws java.lang.Throwable, ArgumentNullException, ArgumentException, SecurityException, NotSupportedException, FormatException, ArgumentOutOfRangeException, NotImplementedException, InvalidOperationException, NullReferenceException, TypeLoadException, MissingMethodException, TargetInvocationException, FileNotFoundException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, KeyNotFoundException, RankException, UnauthorizedAccessException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionSecurityExceptionNotSupportedExceptionFormatExceptionArgumentOutOfRangeExceptionNotImplementedExceptionInvalidOperationExceptionNullReferenceExceptionTypeLoadExceptionMissingMethodExceptionTargetInvocationExceptionFileNotFoundExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionKeyNotFoundExceptionRankExceptionUnauthorizedAccessExceptionpublic static void CompileToAssembly(RegexCompilationInfo[] regexinfos, AssemblyName assemblyname, CustomAttributeBuilder[] attributes, java.lang.String resourceFile) throws java.lang.Throwable, ArgumentNullException, ArgumentException, SecurityException, NotSupportedException, FormatException, ArgumentOutOfRangeException, NotImplementedException, InvalidOperationException, NullReferenceException, TypeLoadException, MissingMethodException, TargetInvocationException, FileNotFoundException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, KeyNotFoundException, RankException, UnauthorizedAccessException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionSecurityExceptionNotSupportedExceptionFormatExceptionArgumentOutOfRangeExceptionNotImplementedExceptionInvalidOperationExceptionNullReferenceExceptionTypeLoadExceptionMissingMethodExceptionTargetInvocationExceptionFileNotFoundExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionKeyNotFoundExceptionRankExceptionUnauthorizedAccessExceptionpublic static java.lang.String Escape(java.lang.String str)
throws java.lang.Throwable,
ArgumentNullException,
FormatException,
ArgumentOutOfRangeException,
InvalidOperationException,
OutOfMemoryException
java.lang.ThrowableArgumentNullExceptionFormatExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionOutOfMemoryExceptionpublic static int getCacheSize()
throws java.lang.Throwable
java.lang.Throwablepublic java.lang.String[] GetGroupNames()
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
ArgumentOutOfRangeException
public int[] GetGroupNumbers()
throws java.lang.Throwable
java.lang.Throwablepublic 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,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
CultureNotFoundException,
ArgumentOutOfRangeException,
ObjectDisposedException,
AbandonedMutexException
public int GroupNumberFromName(java.lang.String name)
throws java.lang.Throwable,
ArgumentNullException,
ObjectDisposedException,
AbandonedMutexException
java.lang.ThrowableArgumentNullExceptionObjectDisposedExceptionAbandonedMutexExceptionpublic boolean IsMatch(java.lang.String input)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
NotImplementedException,
CultureNotFoundException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
MissingManifestResourceException,
ObjectDisposedException,
InvalidOperationException,
OverflowException,
RegexMatchTimeoutException
public boolean IsMatch(java.lang.String input,
int startat)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotImplementedException,
ArgumentOutOfRangeException,
CultureNotFoundException,
MissingManifestResourceException,
ObjectDisposedException,
OverflowException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionOverflowExceptionRegexMatchTimeoutExceptionpublic static boolean IsMatch(java.lang.String input,
java.lang.String pattern)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentOutOfRangeException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
CultureNotFoundException,
OutOfMemoryException,
IndexOutOfRangeException,
MissingManifestResourceException,
ObjectDisposedException,
NullReferenceException,
KeyNotFoundException,
NotSupportedException,
RankException,
SecurityException,
NotImplementedException,
OverflowException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionNullReferenceExceptionKeyNotFoundExceptionNotSupportedExceptionRankExceptionSecurityExceptionNotImplementedExceptionOverflowExceptionRegexMatchTimeoutExceptionpublic static boolean IsMatch(java.lang.String input,
java.lang.String pattern,
RegexOptions options)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentOutOfRangeException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
CultureNotFoundException,
OutOfMemoryException,
IndexOutOfRangeException,
MissingManifestResourceException,
ObjectDisposedException,
NullReferenceException,
KeyNotFoundException,
NotSupportedException,
RankException,
SecurityException,
NotImplementedException,
OverflowException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionNullReferenceExceptionKeyNotFoundExceptionNotSupportedExceptionRankExceptionSecurityExceptionNotImplementedExceptionOverflowExceptionRegexMatchTimeoutExceptionpublic static boolean IsMatch(java.lang.String input,
java.lang.String pattern,
RegexOptions options,
TimeSpan matchTimeout)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentOutOfRangeException,
TypeLoadException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotSupportedException,
CultureNotFoundException,
OutOfMemoryException,
IndexOutOfRangeException,
MissingManifestResourceException,
NotImplementedException,
ObjectDisposedException,
FormatException,
NullReferenceException,
KeyNotFoundException,
RankException,
SecurityException,
OverflowException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionTypeLoadExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotSupportedExceptionCultureNotFoundExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionFormatExceptionNullReferenceExceptionKeyNotFoundExceptionRankExceptionSecurityExceptionOverflowExceptionRegexMatchTimeoutExceptionpublic Match Match(java.lang.String input) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, OverflowException, RegexMatchTimeoutException
public Match Match(java.lang.String input, int startat) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, OverflowException, RegexMatchTimeoutException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionOverflowExceptionRegexMatchTimeoutExceptionpublic Match Match(java.lang.String input, int beginning, int length) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, OverflowException, RegexMatchTimeoutException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionOverflowExceptionRegexMatchTimeoutExceptionpublic static Match Match(java.lang.String input, java.lang.String pattern) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, CultureNotFoundException, OutOfMemoryException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, NullReferenceException, KeyNotFoundException, NotSupportedException, RankException, SecurityException, NotImplementedException, OverflowException, RegexMatchTimeoutException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionNullReferenceExceptionKeyNotFoundExceptionNotSupportedExceptionRankExceptionSecurityExceptionNotImplementedExceptionOverflowExceptionRegexMatchTimeoutExceptionpublic static Match Match(java.lang.String input, java.lang.String pattern, RegexOptions options) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, CultureNotFoundException, OutOfMemoryException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, NullReferenceException, KeyNotFoundException, NotSupportedException, RankException, SecurityException, NotImplementedException, OverflowException, RegexMatchTimeoutException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionNullReferenceExceptionKeyNotFoundExceptionNotSupportedExceptionRankExceptionSecurityExceptionNotImplementedExceptionOverflowExceptionRegexMatchTimeoutExceptionpublic static Match Match(java.lang.String input, java.lang.String pattern, RegexOptions options, TimeSpan matchTimeout) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, TypeLoadException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotSupportedException, CultureNotFoundException, OutOfMemoryException, IndexOutOfRangeException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, FormatException, NullReferenceException, KeyNotFoundException, RankException, SecurityException, OverflowException, RegexMatchTimeoutException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionTypeLoadExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotSupportedExceptionCultureNotFoundExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionFormatExceptionNullReferenceExceptionKeyNotFoundExceptionRankExceptionSecurityExceptionOverflowExceptionRegexMatchTimeoutExceptionpublic MatchCollection Matches(java.lang.String input) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException
public MatchCollection Matches(java.lang.String input, int startat) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException
public static MatchCollection Matches(java.lang.String input, java.lang.String pattern) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, CultureNotFoundException, OutOfMemoryException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, NullReferenceException, KeyNotFoundException, NotSupportedException, RankException, SecurityException, NotImplementedException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionNullReferenceExceptionKeyNotFoundExceptionNotSupportedExceptionRankExceptionSecurityExceptionNotImplementedExceptionpublic static MatchCollection Matches(java.lang.String input, java.lang.String pattern, RegexOptions options) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, CultureNotFoundException, OutOfMemoryException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, NullReferenceException, KeyNotFoundException, NotSupportedException, RankException, SecurityException, NotImplementedException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionNullReferenceExceptionKeyNotFoundExceptionNotSupportedExceptionRankExceptionSecurityExceptionNotImplementedExceptionpublic static MatchCollection Matches(java.lang.String input, java.lang.String pattern, RegexOptions options, TimeSpan matchTimeout) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, TypeLoadException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotSupportedException, CultureNotFoundException, OutOfMemoryException, IndexOutOfRangeException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, FormatException, NullReferenceException, KeyNotFoundException, RankException, SecurityException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionTypeLoadExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotSupportedExceptionCultureNotFoundExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionFormatExceptionNullReferenceExceptionKeyNotFoundExceptionRankExceptionSecurityExceptionpublic java.lang.String Replace(java.lang.String input,
MatchEvaluator evaluator)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
NotImplementedException,
CultureNotFoundException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
MissingManifestResourceException,
ObjectDisposedException,
InvalidOperationException,
OverflowException,
RegexMatchTimeoutException,
OutOfMemoryException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionOverflowExceptionRegexMatchTimeoutExceptionOutOfMemoryExceptionpublic java.lang.String Replace(java.lang.String input,
MatchEvaluator evaluator,
int count)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
NotImplementedException,
CultureNotFoundException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
MissingManifestResourceException,
ObjectDisposedException,
InvalidOperationException,
OverflowException,
RegexMatchTimeoutException,
OutOfMemoryException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionOverflowExceptionRegexMatchTimeoutExceptionOutOfMemoryExceptionpublic java.lang.String Replace(java.lang.String input,
MatchEvaluator evaluator,
int count,
int startat)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotImplementedException,
ArgumentOutOfRangeException,
CultureNotFoundException,
MissingManifestResourceException,
ObjectDisposedException,
OverflowException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionOverflowExceptionRegexMatchTimeoutExceptionpublic java.lang.String Replace(java.lang.String input,
java.lang.String replacement)
throws java.lang.Throwable,
ArgumentNullException,
NullReferenceException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
CultureNotFoundException,
ArgumentOutOfRangeException,
NotSupportedException,
OutOfMemoryException,
MissingManifestResourceException,
NotImplementedException,
ObjectDisposedException,
FormatException,
OverflowException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentNullExceptionNullReferenceExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionArgumentOutOfRangeExceptionNotSupportedExceptionOutOfMemoryExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionFormatExceptionOverflowExceptionRegexMatchTimeoutExceptionpublic java.lang.String Replace(java.lang.String input,
java.lang.String replacement,
int count)
throws java.lang.Throwable,
ArgumentNullException,
NullReferenceException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
CultureNotFoundException,
ArgumentOutOfRangeException,
NotSupportedException,
OutOfMemoryException,
MissingManifestResourceException,
NotImplementedException,
ObjectDisposedException,
FormatException,
OverflowException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentNullExceptionNullReferenceExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionArgumentOutOfRangeExceptionNotSupportedExceptionOutOfMemoryExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionFormatExceptionOverflowExceptionRegexMatchTimeoutExceptionpublic java.lang.String Replace(java.lang.String input,
java.lang.String replacement,
int count,
int startat)
throws java.lang.Throwable,
ArgumentNullException,
NullReferenceException,
TypeLoadException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotSupportedException,
CultureNotFoundException,
ArgumentOutOfRangeException,
OutOfMemoryException,
IndexOutOfRangeException,
NotImplementedException,
MissingManifestResourceException,
ObjectDisposedException,
FormatException,
OverflowException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentNullExceptionNullReferenceExceptionTypeLoadExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotSupportedExceptionCultureNotFoundExceptionArgumentOutOfRangeExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionFormatExceptionOverflowExceptionRegexMatchTimeoutExceptionpublic static java.lang.String Replace(java.lang.String input,
java.lang.String pattern,
MatchEvaluator evaluator)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentOutOfRangeException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
CultureNotFoundException,
OutOfMemoryException,
IndexOutOfRangeException,
MissingManifestResourceException,
ObjectDisposedException,
NullReferenceException,
KeyNotFoundException,
NotSupportedException,
RankException,
SecurityException,
NotImplementedException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionNullReferenceExceptionKeyNotFoundExceptionNotSupportedExceptionRankExceptionSecurityExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic static java.lang.String Replace(java.lang.String input,
java.lang.String pattern,
MatchEvaluator evaluator,
RegexOptions options)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentOutOfRangeException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
CultureNotFoundException,
OutOfMemoryException,
IndexOutOfRangeException,
MissingManifestResourceException,
ObjectDisposedException,
NullReferenceException,
KeyNotFoundException,
NotSupportedException,
RankException,
SecurityException,
NotImplementedException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionNullReferenceExceptionKeyNotFoundExceptionNotSupportedExceptionRankExceptionSecurityExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic static java.lang.String Replace(java.lang.String input,
java.lang.String pattern,
MatchEvaluator evaluator,
RegexOptions options,
TimeSpan matchTimeout)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentOutOfRangeException,
TypeLoadException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotSupportedException,
CultureNotFoundException,
OutOfMemoryException,
IndexOutOfRangeException,
MissingManifestResourceException,
NotImplementedException,
ObjectDisposedException,
FormatException,
NullReferenceException,
KeyNotFoundException,
RankException,
SecurityException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionTypeLoadExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotSupportedExceptionCultureNotFoundExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionFormatExceptionNullReferenceExceptionKeyNotFoundExceptionRankExceptionSecurityExceptionRegexMatchTimeoutExceptionpublic static java.lang.String Replace(java.lang.String input,
java.lang.String pattern,
java.lang.String replacement)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentOutOfRangeException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
CultureNotFoundException,
OutOfMemoryException,
IndexOutOfRangeException,
MissingManifestResourceException,
ObjectDisposedException,
NullReferenceException,
KeyNotFoundException,
NotSupportedException,
RankException,
SecurityException,
NotImplementedException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionNullReferenceExceptionKeyNotFoundExceptionNotSupportedExceptionRankExceptionSecurityExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic static java.lang.String Replace(java.lang.String input,
java.lang.String pattern,
java.lang.String replacement,
RegexOptions options)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentOutOfRangeException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
CultureNotFoundException,
OutOfMemoryException,
IndexOutOfRangeException,
MissingManifestResourceException,
ObjectDisposedException,
NullReferenceException,
KeyNotFoundException,
NotSupportedException,
RankException,
SecurityException,
NotImplementedException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionNullReferenceExceptionKeyNotFoundExceptionNotSupportedExceptionRankExceptionSecurityExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic 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,
ArgumentNullException,
ArgumentOutOfRangeException,
TypeLoadException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotSupportedException,
CultureNotFoundException,
OutOfMemoryException,
IndexOutOfRangeException,
MissingManifestResourceException,
NotImplementedException,
ObjectDisposedException,
FormatException,
NullReferenceException,
KeyNotFoundException,
RankException,
SecurityException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionTypeLoadExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotSupportedExceptionCultureNotFoundExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionFormatExceptionNullReferenceExceptionKeyNotFoundExceptionRankExceptionSecurityExceptionRegexMatchTimeoutExceptionpublic static void setCacheSize(int CacheSize)
throws java.lang.Throwable,
ArgumentOutOfRangeException,
ArgumentException,
ArgumentNullException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotImplementedException,
CultureNotFoundException,
MissingManifestResourceException,
ObjectDisposedException
public void setJCOInstance(JCObject instance)
setJCOInstance in class NetObjectpublic java.lang.String[] Split(java.lang.String input)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
NotImplementedException,
CultureNotFoundException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
MissingManifestResourceException,
ObjectDisposedException,
InvalidOperationException,
OverflowException,
RegexMatchTimeoutException,
RankException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionOverflowExceptionRegexMatchTimeoutExceptionRankExceptionpublic java.lang.String[] Split(java.lang.String input,
int count)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotImplementedException,
ArgumentOutOfRangeException,
CultureNotFoundException,
MissingManifestResourceException,
ObjectDisposedException,
OverflowException,
RegexMatchTimeoutException,
RankException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionOverflowExceptionRegexMatchTimeoutExceptionRankExceptionpublic java.lang.String[] Split(java.lang.String input,
int count,
int startat)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotImplementedException,
ArgumentOutOfRangeException,
CultureNotFoundException,
MissingManifestResourceException,
ObjectDisposedException,
OverflowException,
RegexMatchTimeoutException,
RankException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionOverflowExceptionRegexMatchTimeoutExceptionRankExceptionpublic static java.lang.String[] Split(java.lang.String input,
java.lang.String pattern)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentOutOfRangeException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
CultureNotFoundException,
OutOfMemoryException,
IndexOutOfRangeException,
MissingManifestResourceException,
ObjectDisposedException,
NullReferenceException,
KeyNotFoundException,
NotSupportedException,
RankException,
SecurityException,
NotImplementedException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionNullReferenceExceptionKeyNotFoundExceptionNotSupportedExceptionRankExceptionSecurityExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic static java.lang.String[] Split(java.lang.String input,
java.lang.String pattern,
RegexOptions options)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentOutOfRangeException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
CultureNotFoundException,
OutOfMemoryException,
IndexOutOfRangeException,
MissingManifestResourceException,
ObjectDisposedException,
NullReferenceException,
KeyNotFoundException,
NotSupportedException,
RankException,
SecurityException,
NotImplementedException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionNullReferenceExceptionKeyNotFoundExceptionNotSupportedExceptionRankExceptionSecurityExceptionNotImplementedExceptionRegexMatchTimeoutExceptionpublic static java.lang.String[] Split(java.lang.String input,
java.lang.String pattern,
RegexOptions options,
TimeSpan matchTimeout)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentOutOfRangeException,
TypeLoadException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotSupportedException,
CultureNotFoundException,
OutOfMemoryException,
IndexOutOfRangeException,
MissingManifestResourceException,
NotImplementedException,
ObjectDisposedException,
FormatException,
NullReferenceException,
KeyNotFoundException,
RankException,
SecurityException,
RegexMatchTimeoutException
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionTypeLoadExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotSupportedExceptionCultureNotFoundExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionFormatExceptionNullReferenceExceptionKeyNotFoundExceptionRankExceptionSecurityExceptionRegexMatchTimeoutExceptionpublic static java.lang.String Unescape(java.lang.String str)
throws java.lang.Throwable,
ArgumentNullException,
FormatException,
ArgumentOutOfRangeException,
ArgumentException,
InvalidOperationException,
OutOfMemoryException,
NotImplementedException,
MissingManifestResourceException,
ObjectDisposedException