index 把@前的截断作为
生活随笔
收集整理的這篇文章主要介紹了
index 把@前的截断作为
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
/**
? ? ?* Returns the name portion of a XMPP address. For example, for the
? ? ?* address "matt@jivesoftware.com/Smack", "matt" would be returned. If no
? ? ?* username is present in the address, the empty string will be returned.
? ? ?*
? ? ?*把@前的截斷作為
? ? ?* @param XMPPAddress the XMPP address.
? ? ?* @return the name portion of the XMPP address.
? ? ?*/
? ? public static String parseName(String xmppAddress) {
? ? ? ? if (Utils.isStrEmpty(xmppAddress)) {
? ? ? ? ? ? return "";
? ? ? ? }
? ? ? ? int atIndex = xmppAddress.lastIndexOf("@");
? ? ? ? if (atIndex <= 0) {
? ? ? ? ? ? return xmppAddress;
? ? ? ? }
? ? ? ? else {
? ? ? ? ? ? return xmppAddress.substring(0, atIndex);
? ? ? ? }
? ? }
? ? ?* Returns the name portion of a XMPP address. For example, for the
? ? ?* address "matt@jivesoftware.com/Smack", "matt" would be returned. If no
? ? ?* username is present in the address, the empty string will be returned.
? ? ?*
? ? ?*把@前的截斷作為
? ? ?* @param XMPPAddress the XMPP address.
? ? ?* @return the name portion of the XMPP address.
? ? ?*/
? ? public static String parseName(String xmppAddress) {
? ? ? ? if (Utils.isStrEmpty(xmppAddress)) {
? ? ? ? ? ? return "";
? ? ? ? }
? ? ? ? int atIndex = xmppAddress.lastIndexOf("@");
? ? ? ? if (atIndex <= 0) {
? ? ? ? ? ? return xmppAddress;
? ? ? ? }
? ? ? ? else {
? ? ? ? ? ? return xmppAddress.substring(0, atIndex);
? ? ? ? }
? ? }
總結
以上是生活随笔為你收集整理的index 把@前的截断作为的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: java传入一个字符串 将它分割成大写字
- 下一篇: 判断网络连接状态