剥字的多音字组词是什么(剥是不是多音字吗)
大家好,我是小编小花,今天给大家介绍一下剥字的多音字组词。我要澄清一下,剥字并不是多音字,它只有一个读音,就是"bō"。
说起多音字,可以举个例子,比如"打"字,它有两个读音,一个是"打",表示用手或工具击打;另一个是"da",表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示表示两个数是否相等
///
/// /// ///
public static int CompareTo(this string a, string b, StringComparison comparisonType)
{
retn string.Compare(a, b, comparisonType);
}
///
/// 确定此字符串实例的是否与指定的字符串匹配。
///
/// /// ///
public static bool EndsWith(this string soce, string value)
{
retn soce.EndsWith(value);
}
///
/// 确定此字符串实例的是否与指定的字符串匹配。
///
/// /// /// ///
public static bool EndsWith(this string soce, string value, StringComparison comparisonType)
{
retn soce.EndsWith(value, comparisonType);
}
///
/// 确定此字符串实例的开头是否与指定的字符串匹配。
///
/// /// ///
public static bool StartsWith(this string soce, string value)
{
retn soce.StartsWith(value);
}
///
/// 确定此字符串实例的开头是否与指定的字符串匹配。
///
/// /// /// ///
public static bool StartsWith(this string soce, string value, StringComparison comparisonType)
{
retn soce.StartsWith(value, comparisonType);
}
///
/// 确定此字符串实例中是否包含指定的字符串。
///
/// /// ///
public static bool Contains(this string soce, string value)
{
retn soce.Contains(value);
}
///
/// 确定此字符串实例中是否包含指定的字符串。
///
/// /// /// ///
public static bool Contains(this string soce, string value, StringComparison comparisonType)
{
retn soce.IndexOf(value, comparisonType) >= 0;
}
///
/// 确定此字符串实例是否以指定的前缀开始。
///
/// /// ///
public static bool StartsWith(this string soce, char prefix)
{
if (soce.Length == 0)
retn false;
retn soce[0] == prefix;
}
///
/// 确定此字符串实例是否以指定的前缀开始。
///
/// /// /// ///
public static bool StartsWith(this string soce, char prefix, StringComparison comparisonType)
{
if (soce.Length == 0)
retn false;
retn soce[0] == prefix;
}
///
/// 确定此字符串实例是否以指定的后缀结束。
///
/// /// ///
public static bool EndsWith(this string soce, char suffix)
{
if (soce.Length == 0)
retn false;
retn soce[soce.Length - 1] == suffix;
}
///
/// 确定此字符串实例是否以指定的后缀结束。
///
/// /// /// ///
public static bool EndsWith(this string soce, char suffix, StringComparison comparisonType)
{
if (soce.Length == 0)
retn false;
retn soce[soce.Length - 1] == suffix;
}
///
/// 获取字符串的长度。
///
/// ///
public static int Length(this string soce)
{
retn soce.Length;
}
///
/// 获取字符串的字符数。
///
/// ///
public static int Count(this string soce)
{
retn soce.Length;
}
///
/// 从字符串的指定位置开始