如何在java中的最后一个逗号后获取字符串? [英] How to get the string after last comma in java?

查看:287
本文介绍了如何在java中的最后一个逗号后获取字符串?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用正则表达式获取字符串中最后一个逗号后的内容?

How do I get the content after the last comma in a string using a regular expression?

示例:

abcd,fg;ijkl, cas

输出应为 cas

注意:最后一个之间有空格逗号和'c'字符也需要删除。
此模式在最后一个逗号后只包含一个空格。

Note: There is a space between last comma and 'c' character which also needs to be removed. Also the pattern contains only one space after last comma.

推荐答案

使用正则表达式:

Pattern p = Pattern.compile(".*,\\s*(.*)");
Matcher m = p.matcher("abcd,fg;ijkl, cas");

if (m.find())
    System.out.println(m.group(1));

输出:

cas






或者你可以使用简单字符串方法:


  1. System.out.println (s.substring(s.slastIndexOf(,)+ 1).trim());

  2. System.out。 println(s.substring(s.lastIndexOf(,)+ 2));

  1. System.out.println(s.substring(s.lastIndexOf(",") + 1).trim());
  2. System.out.println(s.substring(s.lastIndexOf(", ") + 2));

这篇关于如何在java中的最后一个逗号后获取字符串?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆