bstring 有两种,一种在.net中,一种在SQL中。
SQL中:
substring("abcdefg",4,2)
返回的值为:ef
从字符串"返塌abcdefg"陪燃中第4位开始取2位。
是.net中的:
第二个参数长度。
"abcdefg".substring(4,2)
返回的值为:ef
从字符串"abcdefg"中第4位开始取,取到第2位。
"abcdefg".substring(4)
返回:efg 漏乱圆
从字符串"abcdefg"中第4位开始取,取到字符串的尾部。
public String substring(int beginIndex),一般用于返回一个新的字符串,它是此字符串的一个子字符串。该子字符串始于指定索引处的字符,一直到此字符串末尾。
CB用法
用途Returns the substring at the specified location within a String object.
用法举例
strVariable.substring(start, end)
"String Literal".substring(start, end)
用法说明:返回一个字串,其中start是起始的index,end是终止的index,返回的字串包含起始index的字符,但是不包含end的字符。这个是string类下的一个method。
以上内容参考:百度百科-substring