พยายามลบตัวอักษรและตัวอักษรทั้งหมดที่ไม่ใช่ 0-9 และจุด ฉันกำลังใช้Character.isDigit()
แต่มันยังลบทศนิยมฉันจะเก็บทศนิยมได้อย่างไร
พยายามลบตัวอักษรและตัวอักษรทั้งหมดที่ไม่ใช่ 0-9 และจุด ฉันกำลังใช้Character.isDigit()
แต่มันยังลบทศนิยมฉันจะเก็บทศนิยมได้อย่างไร
คำตอบ:
ลองรหัสนี้:
String str = "a12.334tyz.78x";
str = str.replaceAll("[^\\d.]", "");
ตอนนี้จะมีstr
"12.334.78"
[^\\d.-]
"1233478"
ซึ่งไม่ถูกต้อง
ฉันจะใช้ regex
String text = "-jaskdh2367sd.27askjdfh23";
String digits = text.replaceAll("[^0-9.]", "");
System.out.println(digits);
พิมพ์
2367.2723
คุณอาจต้องการเก็บไว้-
สำหรับตัวเลขลบ
^
และความ.
หมายของคำนี้ได้บ้าง?
[^
ไม่ได้หมายความว่าตัวละครเหล่านี้และภายใน[]
a .
เป็นเพียง.
.
เป็นเพียงa
และไม่ได้มีความหมายอะไรเลยฉันสามารถกำจัดมันได้หรือไม่?
.
ผลลัพธ์
String phoneNumberstr = "Tel: 00971-557890-999";
String numberRefined = phoneNumberstr.replaceAll("[^\\d-]", "");
ผลลัพธ์: 0097-557890-999
ถ้าคุณไม่ต้องการ "-" ใน String คุณสามารถทำสิ่งนี้ได้:
String phoneNumberstr = "Tel: 00971-55 7890 999";
String numberRefined = phoneNumberstr.replaceAll("[^0-9]", "");
ผลลัพธ์: 0097557890999
ด้วยฝรั่ง:
String input = "abx123.5";
String result = CharMatcher.inRange('0', '9').or(CharMatcher.is('.')).retainFrom(input);
ดูhttp://code.google.com/p/guava-l ไลบรารี/wiki/StringsExplained
str = str.replaceAll("\\D+","");
printf()
ซ้ำกัน นอกจากนี้หากคุณเห็นคำตอบในความคิดเห็นคุณสามารถขอให้ mod แปลงเป็นคำตอบหรือเพิ่มคำตอบด้วยตัวคุณเอง - คำตอบในความคิดเห็นนั้นไม่ได้รับการสนับสนุนใน StackOverlow
วิธีง่ายๆโดยไม่ใช้ Regex:
การเพิ่มการตรวจสอบอักขระพิเศษสำหรับจุด'.'
จะแก้ปัญหาความต้องการ:
public static String getOnlyNumerics(String str) {
if (str == null) {
return null;
}
StringBuffer strBuff = new StringBuffer();
char c;
for (int i = 0; i < str.length() ; i++) {
c = str.charAt(i);
if (Character.isDigit(c) || c == '.') {
strBuff.append(c);
}
}
return strBuff.toString();
}
วิธีแทนที่ด้วยสตรีม java 8:
public static void main(String[] args) throws IOException
{
String test = "ab19198zxncvl1308j10923.";
StringBuilder result = new StringBuilder();
test.chars().mapToObj( i-> (char)i ).filter( c -> Character.isDigit(c) || c == '.' ).forEach( c -> result.append(c) );
System.out.println( result ); //returns 19198.130810923.
}
ตัวคั่นทศนิยมสกุลเงินอาจแตกต่างจาก Locale ไปยังอีก อาจเป็นอันตรายได้หากพิจารณา.
เป็นตัวคั่นเสมอ กล่าวคือ
╔════════════════╦═══════════════════╗
║ Currency ║ Sample ║
╠════════════════╬═══════════════════╣
║ USA ║ $1,222,333.44 USD ║
║ United Kingdom ║ £1.222.333,44 GBP ║
║ European ║ €1.333.333,44 EUR ║
╚════════════════╩═══════════════════╝
ฉันคิดว่าวิธีที่เหมาะสมคือ:
DecimalFormatSymbols
สถานที่เริ่มต้นหรือหนึ่งที่ระบุและนี่คือวิธีที่ฉันจะแก้มัน:
import java.text.DecimalFormatSymbols;
import java.util.Locale;
รหัส:
public static String getDigit(String quote, Locale locale) {
char decimalSeparator;
if (locale == null) {
decimalSeparator = new DecimalFormatSymbols().getDecimalSeparator();
} else {
decimalSeparator = new DecimalFormatSymbols(locale).getDecimalSeparator();
}
String regex = "[^0-9" + decimalSeparator + "]";
String valueOnlyDigit = quote.replaceAll(regex, "");
try {
return valueOnlyDigit;
} catch (ArithmeticException | NumberFormatException e) {
Log.e(TAG, "Error in getMoneyAsDecimal", e);
return null;
}
return null;
}
ฉันหวังว่ามันจะช่วยได้ '
สำหรับคน Android ที่มาที่นี่เพื่อ Kotlin
val dirtyString = "💰 Account Balance: $-12,345.67"
val cleanString = dirtyString.replace("[^\\d.]".toRegex(), "")
เอาท์พุท:
cleanString = "12345.67"
นี้จากนั้นจะสามารถแปลงได้อย่างปลอดภัยtoDouble()
, toFloat()
หรือtoInt()
ถ้าจำเป็น
สิ่งนี้จะจัดการอินพุตที่ไม่มีค่าเป็นตัวเลขลบและทศนิยม (คุณต้องรวมไลบรารี Apache Commons Lang เวอร์ชัน 3.8 หรือสูงกว่าในโครงการของคุณ):
import org.apache.commons.lang3.RegExUtils;
result = RegExUtils.removeAll(input, "-?[^\\d.]");
การอ้างอิงห้องสมุด: https://commons.apache.org/proper/commons-lang/apidocs/org/apache/commons/lang3/RegExUtils.html