XmlCharacterData.Substring(Int32, Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在指定的范围内检索完整字符串的子字符串。
public:
virtual System::String ^ Substring(int offset, int count);
public virtual string Substring (int offset, int count);
abstract member Substring : int * int -> string
override this.Substring : int * int -> string
Public Overridable Function Substring (offset As Integer, count As Integer) As String
参数
- offset
- Int32
字符串中开始检索的位置。 偏移量为零指示起始点在数据的开始处。
- count
- Int32
要检索的字符数。
返回
对应于指定范围的子字符串。