文字列分割メソッドを使用していますが、最後の要素が必要です。配列のサイズは変更できます。
例:
String one = "Düsseldorf - Zentrum - Günnewig Uebachs"
String two = "Düsseldorf - Madison"
上記の文字列を分割して、最後のアイテムを取得したい:
lastone = one.split("-")[here the last item] // <- how?
lasttwo = two.split("-")[here the last item] // <- how?
実行時の配列のサイズがわかりません:(
配列をローカル変数に保存し、配列のlength
フィールドを使用して長さを見つけます。 1を減算して、0ベースであることを説明します。
String[] bits = one.split("-");
String lastOne = bits[bits.length-1];
または、StringでlastIndexOf()
メソッドを使用できます
String last = string.substring(string.lastIndexOf('-') + 1);
次のようなシンプルで汎用的なヘルパーメソッドを使用します。
public static <T> T last(T[] array) {
return array[array.length - 1];
}
書き直すことができます:
lastone = one.split("-")[..];
なので:
lastone = last(one.split("-"));
Apache Commonsで StringUtils クラスを使用できます。
StringUtils.substringAfterLast(one, "-");
String str = "www.anywebsite.com/folder/subfolder/directory";
int index = str.lastIndexOf('/');
String lastString = str.substring(index +1);
lastString
の値は"directory"
になりました
可能なすべての方法を集めました!!
Java.lang.String
のlastIndexOf()
およびsubstring()
メソッドを使用して
// int firstIndex = str.indexOf( separator );
int lastIndexOf = str.lastIndexOf( separator );
String begningPortion = str.substring( 0, lastIndexOf );
String endPortion = str.substring( lastIndexOf + 1 );
System.out.println("First Portion : " + begningPortion );
System.out.println("Last Portion : " + endPortion );
split()
Java SE 1.4。指定されたテキストを配列に分割します。
String[] split = str.split( Pattern.quote( separator ) );
String lastOne = split[split.length-1];
System.out.println("Split Array : "+ lastOne);
Java 8シーケンシャル順序 stream 配列から。
String firstItem = Stream.of( split )
.reduce( (first,last) -> first ).get();
String lastItem = Stream.of( split )
.reduce( (first,last) -> last ).get();
System.out.println("First Item : "+ firstItem);
System.out.println("Last Item : "+ lastItem);
Apache Commons Langjar " org.Apache.commons.lang3.StringUtils
String afterLast = StringUtils.substringAfterLast(str, separator);
System.out.println("StringUtils AfterLast : "+ afterLast);
String beforeLast = StringUtils.substringBeforeLast(str, separator);
System.out.println("StringUtils BeforeLast : "+ beforeLast);
String open = "[", close = "]";
String[] groups = StringUtils.substringsBetween("Yash[777]Sam[7]", open, close);
System.out.println("String that is nested in between two Strings "+ groups[0]);
Guava
:Java用Googleコアライブラリ。 "com.google.common.base.Splitter
Splitter splitter = Splitter.on( separator ).trimResults();
Iterable<String> iterable = splitter.split( str );
String first_Iterable = Iterables.getFirst(iterable, "");
String last_Iterable = Iterables.getLast( iterable );
System.out.println(" Guava FirstElement : "+ first_Iterable);
System.out.println(" Guava LastElement : "+ last_Iterable);
Javaプラットフォームのスクリプティング "Rhino/Nashornを使用してJVMでJavascriptを実行する
Rhino "Rhinoは、完全にJavaで記述されたJavaScriptのオープンソース実装です。通常、Javaアプリケーションに埋め込まれて、エンドユーザーにスクリプトを提供します。デフォルトのJavaスクリプトエンジンとしてJ2SE 6に組み込まれています。
Nashornは、OracleがJavaプログラミング言語で開発したJavaScriptエンジンです。これはDa Vinci Machineをベースにしており、Java 8でリリースされました。
Java Scripting プログラマーズガイド
public class SplitOperations {
public static void main(String[] args) {
String str = "my.file.png.jpeg", separator = ".";
javascript_Split(str, separator);
}
public static void javascript_Split( String str, String separator ) {
ScriptEngineManager manager = new ScriptEngineManager();
ScriptEngine engine = manager.getEngineByName("JavaScript");
// Script Variables « expose Java objects as variable to script.
engine.put("strJS", str);
// JavaScript code from file
File file = new File("E:/StringSplit.js");
// expose File object as variable to script
engine.put("file", file);
try {
engine.eval("print('Script Variables « expose Java objects as variable to script.', strJS)");
// javax.script.Invocable is an optional interface.
Invocable inv = (Invocable) engine;
// JavaScript code in a String
String functions = "function functionName( functionParam ) { print('Hello, ' + functionParam); }";
engine.eval(functions);
// invoke the global function named "functionName"
inv.invokeFunction("functionName", "function Param value!!" );
// evaluate a script string. The script accesses "file" variable and calls method on it
engine.eval("print(file.getAbsolutePath())");
// evaluate JavaScript code from given file - specified by first argument
engine.eval( new Java.io.FileReader( file ) );
String[] typedArray = (String[]) inv.invokeFunction("splitasJavaArray", str );
System.out.println("File : Function returns an array : "+ typedArray[1] );
ScriptObjectMirror scriptObject = (ScriptObjectMirror) inv.invokeFunction("splitasJavaScriptArray", str, separator );
System.out.println("File : Function return script obj : "+ convert( scriptObject ) );
Object eval = engine.eval("(function() {return ['a', 'b'];})()");
Object result = convert(eval);
System.out.println("Result: {}"+ result);
// JavaScript code in a String. This code defines a script object 'obj' with one method called 'hello'.
String objectFunction = "var obj = new Object(); obj.hello = function(name) { print('Hello, ' + name); }";
engine.eval(objectFunction);
// get script object on which we want to call the method
Object object = engine.get("obj");
inv.invokeMethod(object, "hello", "Yash !!" );
Object fileObjectFunction = engine.get("objfile");
inv.invokeMethod(fileObjectFunction, "hello", "Yashwanth !!" );
} catch (ScriptException e) {
e.printStackTrace();
} catch (NoSuchMethodException e) {
e.printStackTrace();
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
public static Object convert(final Object obj) {
System.out.println("\tJAVASCRIPT OBJECT: {}"+ obj.getClass());
if (obj instanceof Bindings) {
try {
final Class<?> cls = Class.forName("jdk.nashorn.api.scripting.ScriptObjectMirror");
System.out.println("\tNashorn detected");
if (cls.isAssignableFrom(obj.getClass())) {
final Method isArray = cls.getMethod("isArray");
final Object result = isArray.invoke(obj);
if (result != null && result.equals(true)) {
final Method values = cls.getMethod("values");
final Object vals = values.invoke(obj);
System.err.println( vals );
if (vals instanceof Collection<?>) {
final Collection<?> coll = (Collection<?>) vals;
Object[] array = coll.toArray(new Object[0]);
return array;
}
}
}
} catch (ClassNotFoundException | NoSuchMethodException | SecurityException
| IllegalAccessException | IllegalArgumentException | InvocationTargetException e) {
}
}
if (obj instanceof List<?>) {
final List<?> list = (List<?>) obj;
Object[] array = list.toArray(new Object[0]);
return array;
}
return obj;
}
}
JavaScriptファイル"StringSplit.js
// var str = 'angular.1.5.6.js', separator = ".";
function splitasJavaArray( str ) {
var result = str.replace(/\.([^.]+)$/, ':$1').split(':');
print('Regex Split : ', result);
var JavaArray = Java.to(result, "Java.lang.String[]");
return JavaArray;
// return result;
}
function splitasJavaScriptArray( str, separator) {
var arr = str.split( separator ); // Split the string using dot as separator
var lastVal = arr.pop(); // remove from the end
var firstVal = arr.shift(); // remove from the front
var middleVal = arr.join( separator ); // Re-join the remaining substrings
var mainArr = new Array();
mainArr.Push( firstVal ); // add to the end
mainArr.Push( middleVal );
mainArr.Push( lastVal );
return mainArr;
}
var objfile = new Object();
objfile.hello = function(name) { print('File : Hello, ' + name); }
彼は分割を使用して同じ行ですべてを行うように求めていたので、私はこれをお勧めします:
lastone = one.split("-")[(one.split("-")).length -1]
私はできる限り新しい変数を定義することを常に避けており、非常に良い習慣であると感じています
コンパイル時に配列のサイズがわからないということですか?実行時に、それらはlastone.length
およびlastwo.length
の値によって見つけることができます。
Java 8
String lastItem = Stream.of(str.split("-")).reduce((first,last)->last).get();
これをi行で行いたいと思います。可能です(ただし、少しジャグリング= ^)
new StringBuilder(new StringBuilder("Düsseldorf - Zentrum - Günnewig Uebachs").reverse().toString().split(" - ")[0]).reverse()
tadaa、1行->必要な結果( "-"(マイナス)だけでなく "-"(スペース-スペース)で分割すると、パーティションの前に迷惑なスペースがなくなります= ^)ので、 "GünnewigUebachs" 「GünnewigUebachs」の代わりに(最初の文字としてスペースを使用)
ナイスエクストラ-> libフォルダーに追加のJARファイルは必要ないので、アプリケーションを軽量に保つことができます。
Java.util.ArrayDeque
を使用することもできます
String last = new ArrayDeque<>(Arrays.asList("1-2".split("-"))).getLast();