RegEx ignore in java -


Hello I like the string "DE32424; WV424324; FR234324; DE45345"

How will I first I ignore everything; Therefore only after using DE32424 will be left in the string. ReplaceAll () in Java.

all replaced (";. *.", "");


Comments