Package system.text.regularexpressions
Class Regex
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.text.regularexpressions.Regex
-
- All Implemented Interfaces:
IJCOBridgeReflected,ISerializable
public class Regex extends NetObject implements ISerializable
The base .NET class managing System.Text.RegularExpressions.Regex, System.Text.RegularExpressions, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a..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
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringassemblyFullNameFully assembly qualified name: System.Text.RegularExpressions, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3astatic java.lang.StringassemblyShortNameAssembly name: System.Text.RegularExpressionsstatic java.lang.StringclassNameQualified class name: System.Text.RegularExpressions.Regexstatic JCTypeclassTypeThe type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor 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)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Regexcast(IJCOBridgeReflected from)Try to cast theIJCOBridgeReflectedinstance intoRegex, a cast assert is made to check if types are compatible.static voidCompileToAssembly(RegexCompilationInfo[] regexinfos, AssemblyName assemblyname)static voidCompileToAssembly(RegexCompilationInfo[] regexinfos, AssemblyName assemblyname, CustomAttributeBuilder[] attributes)static voidCompileToAssembly(RegexCompilationInfo[] regexinfos, AssemblyName assemblyname, CustomAttributeBuilder[] attributes, java.lang.String resourceFile)intCount(java.lang.String input)static intCount(java.lang.String input, java.lang.String pattern)static intCount(java.lang.String input, java.lang.String pattern, RegexOptions options)static intCount(java.lang.String input, java.lang.String pattern, RegexOptions options, TimeSpan matchTimeout)static java.lang.StringEscape(java.lang.String str)static intgetCacheSize()java.lang.String[]GetGroupNames()int[]GetGroupNumbers()java.lang.StringgetJCOAssemblyName()Returns the reflected Assembly namejava.lang.StringgetJCOClassName()Returns the reflected Class namejava.lang.ObjectgetJCOInstance()Returns the instantiated classjava.lang.StringgetJCOObjectName()Returns the reflected Class name used to build the objectJCTypegetJCOType()Returns the instantiated class TypeTimeSpangetMatchTimeout()RegexOptionsgetOptions()booleangetRightToLeft()java.lang.StringGroupNameFromNumber(int i)intGroupNumberFromName(java.lang.String name)booleanIsMatch(java.lang.String input)booleanIsMatch(java.lang.String input, int startat)static booleanIsMatch(java.lang.String input, java.lang.String pattern)static booleanIsMatch(java.lang.String input, java.lang.String pattern, RegexOptions options)static booleanIsMatch(java.lang.String input, java.lang.String pattern, RegexOptions options, TimeSpan matchTimeout)MatchMatch(java.lang.String input)MatchMatch(java.lang.String input, int startat)MatchMatch(java.lang.String input, int beginning, int length)static MatchMatch(java.lang.String input, java.lang.String pattern)static MatchMatch(java.lang.String input, java.lang.String pattern, RegexOptions options)static MatchMatch(java.lang.String input, java.lang.String pattern, RegexOptions options, TimeSpan matchTimeout)MatchCollectionMatches(java.lang.String input)MatchCollectionMatches(java.lang.String input, int startat)static MatchCollectionMatches(java.lang.String input, java.lang.String pattern)static MatchCollectionMatches(java.lang.String input, java.lang.String pattern, RegexOptions options)static MatchCollectionMatches(java.lang.String input, java.lang.String pattern, RegexOptions options, TimeSpan matchTimeout)java.lang.StringReplace(java.lang.String input, java.lang.String replacement)java.lang.StringReplace(java.lang.String input, java.lang.String replacement, int count)java.lang.StringReplace(java.lang.String input, java.lang.String replacement, int count, int startat)static java.lang.StringReplace(java.lang.String input, java.lang.String pattern, java.lang.String replacement)static java.lang.StringReplace(java.lang.String input, java.lang.String pattern, java.lang.String replacement, RegexOptions options)static java.lang.StringReplace(java.lang.String input, java.lang.String pattern, java.lang.String replacement, RegexOptions options, TimeSpan matchTimeout)static java.lang.StringReplace(java.lang.String input, java.lang.String pattern, MatchEvaluator evaluator)static java.lang.StringReplace(java.lang.String input, java.lang.String pattern, MatchEvaluator evaluator, RegexOptions options)static java.lang.StringReplace(java.lang.String input, java.lang.String pattern, MatchEvaluator evaluator, RegexOptions options, TimeSpan matchTimeout)java.lang.StringReplace(java.lang.String input, MatchEvaluator evaluator)java.lang.StringReplace(java.lang.String input, MatchEvaluator evaluator, int count)java.lang.StringReplace(java.lang.String input, MatchEvaluator evaluator, int count, int startat)static voidsetCacheSize(int CacheSize)voidsetJCOInstance(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.StringUnescape(java.lang.String str)-
Methods inherited from class org.mases.jcobridge.netreflection.NetObject
Equals, Equals, GetHashCode, GetType, hashCode, toString, ToString
-
Methods inherited from interface system.runtime.serialization.ISerializable
GetObjectData
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Text.RegularExpressions, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Text.RegularExpressions- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Text.RegularExpressions.Regex- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Regex
public Regex(java.lang.Object instance) throws java.lang.ThrowableInternal constructor. Use with caution- Throws:
java.lang.Throwable
-
Regex
public Regex() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
Regex
public Regex(java.lang.String pattern, RegexOptions options, TimeSpan matchTimeout) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, RegexParseException, KeyNotFoundException, OutOfMemoryException, TaskSchedulerException, OverflowException, FormatException- Throws:
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOutOfMemoryExceptionTaskSchedulerExceptionOverflowExceptionFormatException
-
Regex
public Regex(java.lang.String pattern, RegexOptions options) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, RegexParseException, KeyNotFoundException, OutOfMemoryException, TaskSchedulerException, OverflowException, FormatException- Throws:
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOutOfMemoryExceptionTaskSchedulerExceptionOverflowExceptionFormatException
-
Regex
public Regex(java.lang.String pattern) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, RegexParseException, KeyNotFoundException, OutOfMemoryException
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Assembly name- Specified by:
getJCOAssemblyNamein interfaceIJCOBridgeReflected- Specified by:
getJCOAssemblyNamein interfaceISerializable- Overrides:
getJCOAssemblyNamein classNetObject- Returns:
- A
Stringrepresenting the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name- Specified by:
getJCOClassNamein interfaceIJCOBridgeReflected- Specified by:
getJCOClassNamein interfaceISerializable- Overrides:
getJCOClassNamein classNetObject- Returns:
- A
Stringrepresenting the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name used to build the object- Specified by:
getJCOObjectNamein interfaceIJCOBridgeReflected- Specified by:
getJCOObjectNamein interfaceISerializable- Overrides:
getJCOObjectNamein classNetObject- Returns:
- A
Stringrepresenting the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class- Specified by:
getJCOInstancein interfaceIJCOBridgeReflected- Specified by:
getJCOInstancein interfaceISerializable- Overrides:
getJCOInstancein classNetObject- Returns:
- An
Objectrepresenting the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstancein classNetObject
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class Type- Specified by:
getJCOTypein interfaceIJCOBridgeReflected- Specified by:
getJCOTypein interfaceISerializable- Overrides:
getJCOTypein classNetObject- Returns:
- A
JCTyperepresenting the CLR Type of the instantiated Class
-
cast
public static Regex cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflectedinstance intoRegex, a cast assert is made to check if types are compatible.- Parameters:
from-IJCOBridgeReflectedinstance to be casted- Returns:
Regexinstance- Throws:
java.lang.Throwable- in case of error during cast operation
-
IsMatch
public boolean IsMatch(java.lang.String input, int startat) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, NotImplementedException, RegexMatchTimeoutException- Throws:
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionNotImplementedExceptionRegexMatchTimeoutException
-
IsMatch
public 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, IndexOutOfRangeException, RegexParseException, KeyNotFoundException, OverflowException, FormatException, NotImplementedException, RegexMatchTimeoutException- Throws:
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOverflowExceptionFormatExceptionNotImplementedExceptionRegexMatchTimeoutException
-
IsMatch
public static boolean IsMatch(java.lang.String input, java.lang.String pattern, RegexOptions options) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, RegexParseException, KeyNotFoundException, OverflowException, FormatException, NotImplementedException, RegexMatchTimeoutException- Throws:
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOverflowExceptionFormatExceptionNotImplementedExceptionRegexMatchTimeoutException
-
IsMatch
public static boolean IsMatch(java.lang.String input, java.lang.String pattern) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, RegexParseException, KeyNotFoundException, NotImplementedException, RegexMatchTimeoutException- Throws:
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionNotImplementedExceptionRegexMatchTimeoutException
-
IsMatch
public boolean IsMatch(java.lang.String input) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, NotImplementedException, RegexMatchTimeoutException- Throws:
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionNotImplementedExceptionRegexMatchTimeoutException
-
Count
public 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, IndexOutOfRangeException, RegexParseException, KeyNotFoundException, OverflowException, FormatException, NotImplementedException, RegexMatchTimeoutException- Throws:
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOverflowExceptionFormatExceptionNotImplementedExceptionRegexMatchTimeoutException
-
Count
public static int Count(java.lang.String input, java.lang.String pattern, RegexOptions options) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, RegexParseException, KeyNotFoundException, OverflowException, FormatException, NotImplementedException, RegexMatchTimeoutException- Throws:
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOverflowExceptionFormatExceptionNotImplementedExceptionRegexMatchTimeoutException
-
Count
public static int Count(java.lang.String input, java.lang.String pattern) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, RegexParseException, KeyNotFoundException, NotImplementedException, RegexMatchTimeoutException- Throws:
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionNotImplementedExceptionRegexMatchTimeoutException
-
Count
public int Count(java.lang.String input) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, NotImplementedException, RegexMatchTimeoutException- Throws:
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionNotImplementedExceptionRegexMatchTimeoutException
-
GroupNumberFromName
public int GroupNumberFromName(java.lang.String name) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
-
GetGroupNumbers
public int[] GetGroupNumbers() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
-
Escape
public static java.lang.String Escape(java.lang.String str) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, UnreachableException
-
GroupNameFromNumber
public java.lang.String GroupNameFromNumber(int i) throws java.lang.Throwable, NotSupportedException, PlatformNotSupportedException, ArgumentNullException, ArgumentOutOfRangeException- Throws:
java.lang.ThrowableNotSupportedExceptionPlatformNotSupportedExceptionArgumentNullExceptionArgumentOutOfRangeException
-
Replace
public java.lang.String Replace(java.lang.String input, java.lang.String replacement, int count, int startat) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, CultureNotFoundException, FormatException, RegexParseException, NotImplementedException, RegexMatchTimeoutException- Throws:
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionCultureNotFoundExceptionFormatExceptionRegexParseExceptionNotImplementedExceptionRegexMatchTimeoutException
-
Replace
public java.lang.String Replace(java.lang.String input, java.lang.String replacement, int count) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, CultureNotFoundException, RegexParseException, NotImplementedException- Throws:
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionCultureNotFoundExceptionRegexParseExceptionNotImplementedException
-
Replace
public 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, IndexOutOfRangeException, RegexParseException, KeyNotFoundException, OverflowException, FormatException
-
Replace
public 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, IndexOutOfRangeException, RegexParseException, KeyNotFoundException, OverflowException, FormatException
-
Replace
public 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, IndexOutOfRangeException, RegexParseException, KeyNotFoundException
-
Replace
public 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, IndexOutOfRangeException, RegexParseException, KeyNotFoundException, OverflowException, FormatException, NotImplementedException, RegexMatchTimeoutException- Throws:
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOverflowExceptionFormatExceptionNotImplementedExceptionRegexMatchTimeoutException
-
Replace
public 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, IndexOutOfRangeException, RegexParseException, KeyNotFoundException, OverflowException, FormatException, NotImplementedException, RegexMatchTimeoutException- Throws:
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOverflowExceptionFormatExceptionNotImplementedExceptionRegexMatchTimeoutException
-
Replace
public 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, IndexOutOfRangeException, RegexParseException, KeyNotFoundException, NotImplementedException, RegexMatchTimeoutException- Throws:
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionNotImplementedExceptionRegexMatchTimeoutException
-
Replace
public java.lang.String Replace(java.lang.String input, java.lang.String replacement) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, CultureNotFoundException, RegexParseException, NotImplementedException- Throws:
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionCultureNotFoundExceptionRegexParseExceptionNotImplementedException
-
Replace
public java.lang.String Replace(java.lang.String input, MatchEvaluator evaluator, int count, int startat) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, NotImplementedException, RegexMatchTimeoutException- Throws:
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionNotImplementedExceptionRegexMatchTimeoutException
-
Replace
public java.lang.String Replace(java.lang.String input, MatchEvaluator evaluator, int count) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, NotImplementedException, RegexMatchTimeoutException- Throws:
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionNotImplementedExceptionRegexMatchTimeoutException
-
Replace
public java.lang.String Replace(java.lang.String input, MatchEvaluator evaluator) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, NotImplementedException, RegexMatchTimeoutException- Throws:
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionNotImplementedExceptionRegexMatchTimeoutException
-
Unescape
public static java.lang.String Unescape(java.lang.String str) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, RegexParseException
-
GetGroupNames
public java.lang.String[] GetGroupNames() throws java.lang.Throwable, NotSupportedException, InvalidOperationException, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArrayTypeMismatchException
-
Split
public java.lang.String[] Split(java.lang.String input, int count, int startat) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, NotImplementedException, RegexMatchTimeoutException- Throws:
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionNotImplementedExceptionRegexMatchTimeoutException
-
Split
public java.lang.String[] Split(java.lang.String input, int count) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, NotImplementedException, RegexMatchTimeoutException- Throws:
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionNotImplementedExceptionRegexMatchTimeoutException
-
Split
public 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, IndexOutOfRangeException, RegexParseException, KeyNotFoundException, OverflowException, FormatException, NotImplementedException, RegexMatchTimeoutException- Throws:
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOverflowExceptionFormatExceptionNotImplementedExceptionRegexMatchTimeoutException
-
Split
public 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, IndexOutOfRangeException, RegexParseException, KeyNotFoundException, OverflowException, FormatException, NotImplementedException, RegexMatchTimeoutException- Throws:
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOverflowExceptionFormatExceptionNotImplementedExceptionRegexMatchTimeoutException
-
Split
public static java.lang.String[] Split(java.lang.String input, java.lang.String pattern) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, RegexParseException, KeyNotFoundException, NotImplementedException, RegexMatchTimeoutException- Throws:
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionNotImplementedExceptionRegexMatchTimeoutException
-
Split
public java.lang.String[] Split(java.lang.String input) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, NotImplementedException, RegexMatchTimeoutException- Throws:
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionNotImplementedExceptionRegexMatchTimeoutException
-
Match
public Match Match(java.lang.String input, int beginning, int length) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, NotImplementedException, RegexMatchTimeoutException
- Throws:
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionNotImplementedExceptionRegexMatchTimeoutException
-
Match
public Match Match(java.lang.String input, int startat) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, NotImplementedException, RegexMatchTimeoutException
- Throws:
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionNotImplementedExceptionRegexMatchTimeoutException
-
Match
public 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, IndexOutOfRangeException, RegexParseException, KeyNotFoundException, OverflowException, FormatException, NotImplementedException, RegexMatchTimeoutException
- Throws:
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOverflowExceptionFormatExceptionNotImplementedExceptionRegexMatchTimeoutException
-
Match
public static Match Match(java.lang.String input, java.lang.String pattern, RegexOptions options) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, RegexParseException, KeyNotFoundException, OverflowException, FormatException, NotImplementedException, RegexMatchTimeoutException
- Throws:
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionOverflowExceptionFormatExceptionNotImplementedExceptionRegexMatchTimeoutException
-
Match
public static Match Match(java.lang.String input, java.lang.String pattern) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, RegexParseException, KeyNotFoundException, NotImplementedException, RegexMatchTimeoutException
- Throws:
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionRegexParseExceptionKeyNotFoundExceptionNotImplementedExceptionRegexMatchTimeoutException
-
Match
public Match Match(java.lang.String input) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, NotImplementedException, RegexMatchTimeoutException
- Throws:
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionArgumentNullExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArrayTypeMismatchExceptionNotSupportedExceptionObjectDisposedExceptionRankExceptionIndexOutOfRangeExceptionNotImplementedExceptionRegexMatchTimeoutException
-
Matches
public MatchCollection Matches(java.lang.String input, int startat) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
-
Matches
public 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, IndexOutOfRangeException, RegexParseException, KeyNotFoundException, OverflowException, FormatException
-
Matches
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, IndexOutOfRangeException, RegexParseException, KeyNotFoundException, OverflowException, FormatException
-
Matches
public static MatchCollection Matches(java.lang.String input, java.lang.String pattern) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, RegexParseException, KeyNotFoundException
-
Matches
public MatchCollection Matches(java.lang.String input) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
-
CompileToAssembly
public static void CompileToAssembly(RegexCompilationInfo[] regexinfos, AssemblyName assemblyname, CustomAttributeBuilder[] attributes, java.lang.String resourceFile) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException
-
CompileToAssembly
public static void CompileToAssembly(RegexCompilationInfo[] regexinfos, AssemblyName assemblyname, CustomAttributeBuilder[] attributes) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException
-
CompileToAssembly
public static void CompileToAssembly(RegexCompilationInfo[] regexinfos, AssemblyName assemblyname) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException
-
getRightToLeft
public boolean getRightToLeft() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
getCacheSize
public static int getCacheSize() throws java.lang.Throwable, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
setCacheSize
public static void setCacheSize(int CacheSize) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, EventSourceException
-
getOptions
public RegexOptions getOptions() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getMatchTimeout
public TimeSpan getMatchTimeout() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-