Questions tagged «trim»

修剪指的是对文本字符串进行操作以删除前导和/或尾随空格(和/或ASCII控制字符)。

9
如何从mysql中的数据行中删除换行符?
我可以遍历php脚本中的所有行并执行 UPDATE mytable SET title = "'.trim($row['title']).'" where id = "'.$row['id'].'"; 和修剪可以删除\ n 但是我只是想知道是否可以在一个查询中完成相同的操作? update mytable SET title = TRIM(title, '\n') where 1=1 能行吗?然后,我可以执行此查询,而无需遍历! 谢谢 (PS:我可以测试它,但是表很大,不想弄乱数据,所以请考虑一下您之前是否已经测试过类似的东西)
87 mysql  trim 


8
如何在Oracle SQL中选择一个不超过特定字符的子字符串?
说我有一个表列,其结果如下: ABC_blahblahblah DEFGH_moreblahblahblah IJKLMNOP_moremoremoremore 我希望能够编写一个查询,该查询从所述表中选择此列,但仅将子字符串返回到下划线(_)字符。例如: ABC DEFGH IJKLMNOP SUBSTRING函数似乎不适合该任务,因为它基于位置并且下划线的位置不同。 我想到了TRIM函数(特别是RTRIM函数): SELECT RTRIM('listofchars' FROM somecolumn) FROM sometable 但是我不确定如何使它起作用,因为它似乎只删除了某些列表/字符集,而实际上我只是在导致下划线字符的字符之后。
82 sql  oracle  substring  trim 

5
从字符串中删除空格
我正在尝试从用户输入派生的字符串中删除所有空格,但是由于某种原因,它对我不起作用。这是我的代码。 public void onClick(View src) { switch (src.getId()) { case R.id.buttonGo: String input = EditTextinput.getText().toString(); input = String.replace(" ", ""); url = ur + input + l; Intent myIntent = new Intent(start.this, Main.class); myIntent.putExtra("URL", url); start.this.startActivity(myIntent); break; } }
82 android  string  replace  trim 


6
剥离/修剪数据框的所有字符串
清理python / pandas中的多类型数据框的值后,我要修剪字符串。我目前正在执行两条指令: import pandas as pd df = pd.DataFrame([[' a ', 10], [' c ', 5]]) df.replace('^\s+', '', regex=True, inplace=True) #front df.replace('\s+$', '', regex=True, inplace=True) #end df.values 这很慢,我可以改善什么?

11
修剪数组中的所有字符串
我有一个像这样的字符串: string email = "a@a.com, b@b.com, c@c.com"; 我想将其拆分为字符串数组 如果我这样做: string[] emails = email.Split(','); 我在每个电子邮件地址之前(第一个地址之后)都留有空格: emails[0] = "a@a.com" emails[1] = " b@b.com" emails[2] = " c@c.com" 什么是最好的方法(更好的解析方法或修剪数组中所有字符串的方法)? emails[0] = "a@a.com" emails[1] = "b@b.com" emails[2] = "c@c.com"
70 c#  .net  arrays  trim 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.