Available Methods
- isEmpty ( )
- join ( )
- isEmptyOrSpaces ( )
- isNotEmpty ( )
- notNullize ( )
- split ( )
- equals ( )
- replace ( )
- endsWithChar ( )
- trimEnd ( )
- capitalize ( )
- convertLineSeparators ( )
- startsWithChar ( )
- repeatSymbol ( )
- trimStart ( )
- startsWith ( )
- getShortName ( )
- startsWithIgnoreCase ( )
- containsIgnoreCase ( )
- toUpperCase ( )
- toLowerCase ( )
- indexOf ( )
- unquoteString ( )
- nullize ( )
- decapitalize ( )
- trimTrailing ( )
- unescapeXml ( )
- lineColToOffset ( )
- repeat ( )
- shortenTextWithEllipsis ( )
- endsWithIgnoreCase ( )
- contains ( )
- compare ( )
- tokenize ( )
- first ( )
- containsAnyChar ( )
- countNewLines ( )
- equalsIgnoreCase ( )
- pluralize ( )
- isJavaIdentifierPart ( )
- isWhiteSpace ( )
- isJavaIdentifierStart ( )
- indexOfIgnoreCase ( )
- endsWith ( )
- formatDuration ( )
- getPackageName ( )
- replaceChar ( )
- defaultIfEmpty ( )
- splitByLines ( )
- escapeStringCharacters ( )
- strip ( )
- getThrowableText ( )
- notNullizeIfEmpty ( )
- escapeXml ( )
- countChars ( )
- parseInt ( )
- equalsIgnoreWhitespaces ( )
- stripHtml ( )
- compareVersionNumbers ( )
- capitalizeWords ( )
- stringHashCode ( )
- offsetToLineNumber ( )
Related Classes
- java.util.Arrays
- java.io.File
- java.util.Collections
- java.util.regex.Pattern
- java.util.regex.Matcher
- javax.annotation.Nullable
- javax.annotation.Nonnull
- org.jetbrains.annotations.NotNull
- org.jetbrains.annotations.Nullable
- com.intellij.openapi.project.Project
- com.intellij.openapi.vfs.VirtualFile
- com.intellij.openapi.actionSystem.AnActionEvent
- com.intellij.openapi.application.ApplicationManager
- com.intellij.psi.PsiFile
- com.intellij.openapi.editor.Editor
- com.intellij.psi.PsiElement
- org.jdom.Element
- com.intellij.openapi.editor.Document
- org.jetbrains.annotations.NonNls
- com.intellij.openapi.ui.Messages
- com.intellij.openapi.util.TextRange
- com.intellij.openapi.actionSystem.DataContext
- com.intellij.openapi.module.Module
- com.intellij.util.ui.UIUtil
- com.intellij.util.IncorrectOperationException
Java Code Examples for com.intellij.openapi.util.text.StringUtil#stripHtml()
The following examples show how to use
com.intellij.openapi.util.text.StringUtil#stripHtml() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: OptionsTopHitProvider.java From consulo with Apache License 2.0 | 4 votes |
static String messageApp(String property) { return StringUtil.stripHtml(ApplicationBundle.message(property), false); }
Example 2
Source File: OptionsTopHitProvider.java From consulo with Apache License 2.0 | 4 votes |
static String messageIde(String property) { return StringUtil.stripHtml(IdeBundle.message(property), false); }
Example 3
Source File: OptionsTopHitProvider.java From consulo with Apache License 2.0 | 4 votes |
static String messageKeyMap(String property) { return StringUtil.stripHtml(KeyMapBundle.message(property), false); }