如何从分隔字符串中获取值?

时间:2015-08-05 16:25:57

标签: java string split

我有一个分隔符字符串,分隔符是" $%"。字段按特定顺序排列。例如:John $%Smith $%30%洛杉矶 我需要获取此字符串的值并将它们存储在相应的属性

Customer.firstName(_)
Customer.lastName(_)
Customer.age(_)
Customer.city(_)   

到目前为止,我已经尝试了这个但是我知道我做错了:

if(thisString != null){
        if(thisString.endsWith("$%")){
            Customer.firstName(thisString.substring(0,indexOf("$%");
        }
    }

1 个答案:

答案 0 :(得分:3)

尝试使用Java String.split

例如:

RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^www.(.*) [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} ^www.(.*) [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]