I would like to know if anyone knows the regex command to remove the following
name =
from the following
name = wlr
leaving only
wlr
these details are taken from a txt file but the name = part can appear multiple times
So I was thinking something like this would work but it doesn't work properly
String file_name = newLine3.replaceAll("name = ", "");