導航:首頁 > 編程語言 > java替換回車換行

java替換回車換行

發布時間:2023-02-26 19:57:44

java如何去除字串中的空格、回車、換行符、製表符

Java如何去除字串中的空格、回車、換行符、製表符 笨方法:String s = 你要去除的字串;
1.去除空格:s = s.replace(『\\s』,);
2.去除回車:s = s.replace(『
』,);
這樣也可以把空格和回車去掉,其他也可以照這樣做。
註:
回車(\u000a)
\t 水平製表符(\u0009)
\s 空格(\u0008)
換行 將游標移動到下一行第一格 相當於平時用的回車 \r 回車 將游標移動到當前行第一格}

import java.util.regex.Matcher;import java.util.regex.Pattern;public class StringUtils { /** *正則 */ public static String replaceBlank(String str) { String dest = ""; if (str!=null) { Pattern p = Pattern.pile("\\s*|\t|\r|\n"); Matcher m = p.matcher(str); dest = m.replaceAll(""); } return dest; } public static void main(String[] args) { System.out.println(StringUtils.replaceBlank("just do it!")); } /*----------------------------------- 笨方法:String s = "你要去除的字串"; 1.去除空格:s = s.replace('\\s',''); 2.去除回車:s = s.replace('\n',''); 這樣也可以把空格和回車去掉,其他也可以照這樣做。 註:\n 回車(\u000a) \t 水平製表符(\u0009) \s 空格(\u0008) \r 換行(\u000d)*/}

c#如何去除字串中的空格,回車,換行符,製表符
string l_strResult = 你的字串.Replace("\n", "").Replace(" ","").Replace("\t","").Replace("\r","");
關於在字串中如何去除回車和製表符的搜尋推薦
正則表示式沒學過? import java.util.regex.Matcher; import java.util.regex.Pattern; public class StringUtils { /** *正則 */ public s

我們使用過的方法是寫一個過濾這些製表符的工具
C#如何去掉字串中的換行符
從資料庫中返回json格式的資料,但由於資料庫中的資料中有換行符,導致返回的json資料錯誤。
【原因分析】
用for迴圈語句來分析出錯欄位字串中每個字元的ASCII碼,可以看出存在值分別為13、10的兩個字元,造成換行,導致json格式出錯。
【解決方法】
用C#中string的replace函式替換掉這兩個字元,下面是部分程式碼供參考。
jsonStr.Append('subject':' +cleanString(rd.GetString(1)) + ',);
jsonStr.Append('answer':' + cleanString(rd.GetString(2)) + ',);
private string cleanString(string newStr){
如何去掉字串前空白符?空格符,TAB製表符,回車ASCII碼各為多少
在objective-c中,如何去掉一個string 的前後的空格字元或某個特定字元呢?
如@ 「 abc 123 」字串前後有空格,該如何去掉?
使用nsstring 的例項方法 :可以解決該問題。
方法如下:
C程式碼 收藏程式碼
[@" abc 123 " :[NSCharacterSet whitespaceCharacterSet]];

NSString *newString = [oldString :[NSCharacterSet ]];
NSString 中該方法說明如下:
:
Returns a new string made by removing from both ends of the receiver characters contained in a given character set.
- (NSString *):(NSCharacterSet *)set
Parameters
set
A character set containing the characters to remove from the receiver. set must not be nil .
Return Value
A new string made by removing from both ends of the receiver characters contained in set . If the receiver is posed entirely of characters from set , the empty string is returned.
這是典型的其他語言中trim 方法。我要問的是,如何去掉最左邊的空格?又該如何去掉最右邊的空格?
在NSString 的類中沒有提供實現這類需求的方法,我們只能手工去新增這些方法。

C程式碼 收藏程式碼
@interface NSString (TrimmingAdditions)
- (NSString *):(NSCharacterSet *)characterSet ;
- (NSString *):(NSCharacterSet *)characterSet ;
@end

@implementation NSString (TrimmingAdditions)

- (NSString *):(NSCharacterSet *)characterSet {
NSUInteger location = 0;
NSUInteger length = [self length];
unichar charBuffer[length];
[self getCharacters:charBuffer];

for (location; location < length; location++) {
if (![characterSet characterIsMember:charBuffer[location]]) {
break;
}
}

return [self substringWithRange:NSMakeRange(location, length - location)];
}

- (NSString *):(NSCharacterSet *)characterSet {
NSUInteger location = 0;
NSUInteger length = [self length];
unichar charBuffer[length];
[self getCharacters:charBuffer];

for (length; length > 0; length--) {
if (![characterSet characterIsMember:charBuffer[length - 1]]) {
break;
}
}

return [self substringWithRange:NSMakeRange(location, length - location)];
}

@end
word如何去除回車符和換行符
一、word去除回車符(段落標記)的方法,以word2007為例:
1、單擊word2007文件左上角的「Office按鈕」,單擊「word選項」。
2、單擊「顯示」選項,取消勾選「始終在螢幕上顯示這些格式標記」下方的「段落標記」復選框,單擊「確定」。
3、單擊「開始」選單,單擊工具欄中的「顯示/隱藏編輯標記」按鈕使段落標記不顯示。
二、word去除(手動)換行符的方法,以word2007為例:
1、開啟word文件,單擊「開始」選單下的「替換」命令,在彈出的「查詢和替換」對話方塊中單擊「查詢內容」右側的輸入框,單擊「更多」按鈕。
2、單擊「特殊格式」按鈕,單擊「手動換行符」命令。
3、在「查詢和替換」對話方塊中單擊「替換為」右側的輸入框,單擊「全部替換」按鈕。
4、在彈出的提示框中單擊「確定」按鈕。

可以通過以下方法解決問題:
1、去不掉的,列印的時候不顯示。

⑵ Java中怎麼處理多餘的回車符

JAVA中去掉空格
1. String.trim()
trim()是去掉首尾空格
2.str.replace(" ", ""); 去掉所有空格,包括首尾、中間
復制代碼 代碼如下:String str = " hell o ";
String str2 = str.replaceAll(" ", "");
System.out.println(str2);
3.或者replaceAll(" +",""); 去掉所有空格
4.str = .replaceAll("\\s*", "");
可以替換大部分空白字元, 不限於空格
\s 可以匹配空格、製表符、換頁符等空白字元的其中任意一個 您可能感興趣的文章:java去除字元串中的空格、回車、換行符、製表符的小例子

⑶ java中實現換行的幾種方法

java中實現換行有以下幾種方法:
1.使用java中的轉義符"\r\n":
String str="aaa";
str+="\r\n";
這樣在str後面就有換行了.
注意:\r,\n的順回序是不能夠對換的,否則答不能實現換行的效果.
2.BufferedWriter的newline()方法:
FileOutputStream fos=new FileOutputStream("c;\\11.txt");
BufferedWriter bw=new BufferedWriter(fos);
bw.write("你好");
bw.newline();
bw.write("java");
w.newline();
3.使用System.getProperty()方法:
String str = "aaa"+System.getProperty("line.separator");
附:針對常用的系統,可以使用如下的轉義符實現換行:
windows下的文本文件換行符:\r\n
linux/unix下的文本文件換行符:\r
Mac下的文本文件換行符:\n

⑷ java怎麼替換word文檔的換行符

java?word跟javae有什麼關系?
在「查找內容」中輸入「手動換行符」,也可以通過鍵盤輸入「^l」
在「替換內容」中輸入「段落標記」,也可以通過鍵盤輸入「^p」。
全文替換,就可以將本文中所有的「手動換行符」替換成「段落標記」了
簡單的說 ctrl加h 調出查找替換 查找^l然後全文替換為^p
不懂再補充
求採納為滿意回答。

⑸ java怎麼換行

第一種:使用來System.out.println()//這是自換一行。

第二種:使用System.out.print("\n");//這也是換一行.

第一種和第二種差不多。只是,如果你要換兩行,三行,多行的話。
就用:System.out.println("\n\n");換兩行
換三行:System.out.println("\n\n"\n);

⑹ java中如何表示一個回車符

可抄以使用Java中\n和\r的換行,不過也襲是有區別的,如下:
1.\r 叫回車 Carriage Return
2.\n 叫新行 New Line
但是都會造成換行,使用System.getProperty("line.separator")來獲取當前OS的換行符
java 代碼
1. String userInputString = userInput;
2. userInputString = userInputString.replaceAll ( "\r", "" );
3. userInputString = userInputString.replaceAll ( "\n", "\\\\"+System.getPropert("line.separator"));

⑺ java解析word中的文字,出現手動換行符,就是向下的箭頭,怎麼替換為\n

str = str.replaceAll(String.valueOf((char)7), "");

自己用DEBUG去查你DOC里的換行符對應的char值是多少,我這個文檔是7

閱讀全文

與java替換回車換行相關的資料

熱點內容
微信視頻不能轉發朋友圈 瀏覽:596
影視後期的app有哪些 瀏覽:956
電子保單數據出錯什麼意思 瀏覽:368
如何以文件下載音樂 瀏覽:438
計算機網路章節練習 瀏覽:999
單片機的外部中斷程序 瀏覽:48
表格批量更名找不到指定文件 瀏覽:869
js的elseif 瀏覽:584
3dmaxvray視頻教程 瀏覽:905
imgtool工具中文版 瀏覽:539
java幫助文件在哪裡 瀏覽:965
win10切換輸入語言 瀏覽:696
haier電視網路用不了怎麼辦 瀏覽:361
蘋果6手機id怎麼更改 瀏覽:179
米家掃地機器人下載什麼app 瀏覽:82
如何在編程貓代碼島20種樹 瀏覽:915
手機基礎信息存儲在哪個文件 瀏覽:726
如何查找手機備份文件 瀏覽:792
內存清理工具formac 瀏覽:323
iphone過濾騷擾電話 瀏覽:981

友情鏈接