n

netbeans-case-converter

This module provides a convenient way to convert string case.

Usage

In the editor panel:
  1. Select the text you want to change the case of
  2. Right-click to open the contextual menu
  3. Open the Convert To... submenu
  4. Click on the converter of your choice
Please note that if no text is selected, the menu is disabled.

Available converters

  • camelCase: first capitalized letter of each word, except for the first letter of the resulting word, no space
  • hyphen-case: lower case words separated with an hyphen
  • lower case: lower case words
  • PascalCase: first capitalized letter of each word, no space
  • Sentence case.: first capitalized letter of the first word, ends with a dot (capital letters within the sentence are preserved)
  • snake_case: lower case words separated with an underline character
  • Title Case: first capitalized letter of each word, one space between words
  • UPPER CASE: upper case words
https://github.com/eviweb/netbeans-case-converter
Apache License, Version 2.0
Eric VILLARD
Files download
File Operation
netbeans-case-converter-0.2.3.jar download
netbeans-case-converter-0.2.3.pom download
Apache Maven
<dependency>
  <groupId>fr.evidev.netbeans.modules</groupId>
  <artifactId>netbeans-case-converter</artifactId>
  <version>0.2.3</version>
  <type>nbm</type>
</dependency>
Gradle Groovy
implementation 'fr.evidev.netbeans.modules:netbeans-case-converter:0.2.3'
Gradle Kotlin
implementation("fr.evidev.netbeans.modules:netbeans-case-converter:0.2.3")
Scala SBT
libraryDependencies += "fr.evidev.netbeans.modules" % "netbeans-case-converter" % "0.2.3"
Groovy Grape
@Grapes(
  @Grab(group='fr.evidev.netbeans.modules', module='netbeans-case-converter', version='0.2.3')
)
Apache Ivy
<dependency org="fr.evidev.netbeans.modules" name="netbeans-case-converter" rev="0.2.3" />
Leiningen
[fr.evidev.netbeans.modules/netbeans-case-converter "0.2.3"]
Apache Buildr
'fr.evidev.netbeans.modules:netbeans-case-converter:jar:0.2.3'