超出50字符 自动截取 前50个字符 怎么实现啊
答案:2 悬赏:80 手机版
解决时间 2021-01-03 06:21
- 提问者网友:書生途
- 2021-01-02 20:28
超出50字符 自动截取 前50个字符
怎么实现啊
希望给个完整的列子
最佳答案
- 五星知识达人网友:走死在岁月里
- 2021-01-02 22:00
Dim x
x = Text1.Text
If Len(x) <= 50 Then Text2.Text = x
If Len(x) > 50 Then Text2.Text = Left(x, 50)
判断有没有超出50个字符。超出就用 Left(x, 50)获取50个。
x = Text1.Text
If Len(x) <= 50 Then Text2.Text = x
If Len(x) > 50 Then Text2.Text = Left(x, 50)
判断有没有超出50个字符。超出就用 Left(x, 50)获取50个。
全部回答
- 1楼网友:像个废品
- 2021-01-02 22:22
用字符串分割:把字符串a,按,分割成单独的子串,存在一个数组里面,然后就可以根据数组的下标取值了。
//代码如下:
import java.util.arrays;
public class test1
{
public static void main(string[] args)
{
string orignstring = new string("fssd,gdepb,cc,ss");
string[] teststring = orignstring.split(",");
for (int j = 0; j < teststring.length; j++)
{
system.out.println(teststring[j]);
}
}
}
//测试结果如下:
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯