int REG_NOTBOL = 16, in Class RE

Documentation
* Execution flag.
* The match-beginning operator (^) will not match at the beginning
* of the input string. Useful for matching on a substring when you
* know the context of the input is such that position zero of the
* input to the match test is not actually position zero of the text.
* <P>
* This example demonstrates the results of various ways of matching on
* a substring.
* <P>
* <CODE>
* String s = "food bar fool";<BR>
* RE exp = new RE("^foo.");<BR>
* REMatch m0 = exp.getMatch(s);<BR>
* REMatch m1 = exp.getMatch(s.substring(8));<BR>
* REMatch m2 = exp.getMatch(s.substring(8),0,RE.REG_NOTBOL); <BR>
* REMatch m3 = exp.getMatch(s,8); <BR>
* REMatch m4 = exp.getMatch(s,8,RE.REG_ANCHORINDEX); <BR>
* <P>
* // Results:<BR>
* // m0 = "food"<BR>
* // m1 = "fool"<BR>
* // m2 = null<BR>
* // m3 = null<BR>
* // m4 = "fool"<BR>
* </CODE>


Export ControlPublicAccessContainmentUnspecified
StaticYesDerivedNo


Property Settings

Java
FinalTrueTransientFalse
VolatileFalsePropertyTypeNot A Property
BeanProperty_SetNot A Property, Simple, Bound, ConstrainedIndividualChangeMgtFalse
Read/WriteRead & WriteRead/Write_SetRead & Write, Read Only, Write Only
GenerateFullyQualifiedTypesFalse  


Data Modeler
dmItemFalseDMName 
Ordinal0IsIdentityFalse
NullsAllowedFalseLength0
Scale0ColumnType 
ForBitDataFalseDefaultValueType 
DefaultValue SourceId 
SourceType