Skip to content

VDonC#ev

C{}d3

Categories

  • Abstract Data Structures
  • C# Algorithms
  • C# Snippets
  • Combinatorics
  • Java Algorithms
  • Java Snippets
  • Javascript Algorithms
  • PHP

Useful

  • Combinatorial Examples

MINI

Guess the number
Text 2 Array
Notepad

Recent Posts

  • Look And Say Sequence – PHP 7.4
  • Look and Say Sequence in PHP
  • Look and Say Sequence Generator – Javascript (ECMAscript 6)
  • Shortest Path In Graph – Dijkstra’s Algorithm – C# Implementation
  • Minimum Spanning Tree – Kruskal Algorithm – C# Implementation

How to split by forward or/and back slash in Java using RegEx

public class MatchBackslashRegex {
    public static void main(String[] args) {
        String string = "Element1\\Element2";
        String[] strArr = string.split("/\\\\");
        System.out.println(strArr[0]); // returns Element1
    }
}
Posted on October 14, 2015December 1, 2019Author vdonchevCategories Java SnippetsTags back slash, forward slash, how to, java, split, string

Post navigation

Previous Previous post: How to reverse String in Java
Next Next post: How to generate random integer in range in Java
Proudly powered by WordPress
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.Ok