MasterCurveCreationHasBaseName Method |
Determines whether a column name can be divided into a base name, and a sequence of digits.
Namespace: Altaxo.Science.Thermorheology.MasterCurvesAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static (bool hasBaseName, string baseName) HasBaseName(
string nameOfColumn
)
Parameters
- nameOfColumn String
- The name of column.
Return Value
ValueTupleBoolean,
String[Missing <returns> documentation for "M:Altaxo.Science.Thermorheology.MasterCurves.MasterCurveCreation.HasBaseName(System.String)"]
Example
For example,
the name 'Yabs05423' has a base name 'Yabs'. The name 'Yabs.05423' has the same base name 'Yabs' (dots will be ignored).
The name '05.234' has no base name (it only contains dot and digits).
See Also