You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Regex
Given C# code:
Regex regex = new Regex("[.,:;]");
job.Title = regex.Replace(job.Title, "");
this was translated to
Pattern regex = Pattern.compile("[.,:;]");
job.setTitle(regex.Replace(job.getTitle(), ""));
but method Replace does not exist on class Pattern.
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: